< prev index next >

src/share/classes/javax/swing/ActionMap.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

@@ -195,11 +195,11 @@
             // Should only happen if size() != keys.length, which should only
             // happen if mutated from multiple threads (or a bogus subclass).
             return pKeys;
         }
 
-        HashMap        keyMap = new HashMap();
+        HashMap<Object, Object> keyMap = new HashMap<Object, Object>();
         int            counter;
 
         for (counter = keys.length - 1; counter >= 0; counter--) {
             keyMap.put(keys[counter], keys[counter]);
         }
< prev index next >