< prev index next >

src/java.desktop/share/classes/javax/swing/DefaultListModel.java

Print this page

        

@@ -96,11 +96,11 @@
      * else an {@code IndexOutOfBoundsException} is thrown.
      *
      * @param   anArray   the array into which the components get copied
      * @see Vector#copyInto(Object[])
      */
-    public void copyInto(Object anArray[]) {
+    public void copyInto(Object[] anArray) {
         delegate.copyInto(anArray);
     }
 
     /**
      * Trims the capacity of this list to be the list's current size.
< prev index next >