src/share/classes/javax/swing/plaf/metal/MetalToolBarUI.java

Print this page

        

@@ -115,11 +115,11 @@
     /**
      * Finds a previously registered component of class <code>target</code>
      * that shares the JRootPane ancestor of <code>from</code>.
      */
     synchronized static Object findRegisteredComponentOfType(JComponent from,
-                                                             Class target) {
+                                                             Class<?> target) {
         JRootPane rp = SwingUtilities.getRootPane(from);
         if (rp != null) {
             for (int counter = components.size() - 1; counter >= 0; counter--){
                 Object component = ((WeakReference)components.get(counter)).
                                    get();