storm
storm copied to clipboard
[STORM-3132] Avoid NPE in the Values Constructor
Values construction could end up throwing NPE.
So this changes a Values(null) into a Values() That is not really what I would expect. I would prefer to have Values(null) insert a null into the list. Values(null, "A") does not turn into Values("A").
+1 to @revans2.
@revans2 @HeartSaVioR Now constructor allows null values.
@HeartSaVioR Removed unwanted condition.