< prev index next >

src/com/sun/interview/FileListQuestion.java

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

@@ -124,11 +124,11 @@
      * @param paths The new value for the question, can be null to set no value.
      * @see #getValue
      */
     @Override
     public void setValue(String paths) {
-        setValue(paths == null ? (File[])null : split(paths));
+        setValue(paths == null ? null : split(paths));
     }
 
     /**
      * Set the current value.
      * @param newValue The value to be set.
< prev index next >