< prev index next >

src/com/sun/interview/StringListQuestion.java

Print this page
rev 145 : 7902237: Fixing raw use of parameterized class
Reviewed-by: jjg

*** 139,149 **** public boolean isValueAlwaysValid() { return false; } public void setValue(String s) { ! setValue(s == null ? ((String[]) null) : split(s)); } /** * Set the current value. * @param newValue The value to be set. --- 139,149 ---- public boolean isValueAlwaysValid() { return false; } public void setValue(String s) { ! setValue(s == null ? null : split(s)); } /** * Set the current value. * @param newValue The value to be set.
< prev index next >