< prev index next >

src/share/classes/javax/swing/DefaultListSelectionModel.java

Print this page
rev 1527 : 6727662: Code improvement and warnings removing from swing packages
Summary: Removed unnecessary castings and other warnings
Reviewed-by: malenkov

@@ -130,12 +130,11 @@
      * @see #removeListSelectionListener
      *
      * @since 1.4
      */
     public ListSelectionListener[] getListSelectionListeners() {
-        return (ListSelectionListener[])listenerList.getListeners(
-                ListSelectionListener.class);
+        return listenerList.getListeners(ListSelectionListener.class);
     }
 
     /**
      * Notifies listeners that we have ended a series of adjustments.
      */
< prev index next >