langtools/src/share/classes/com/sun/tools/javac/jvm/Pool.java
changeset 22163 3651128c74eb
parent 21014 57913337d634
child 24396 3c36c6afcbca
--- a/langtools/src/share/classes/com/sun/tools/javac/jvm/Pool.java	Wed Dec 18 19:22:58 2013 +0000
+++ b/langtools/src/share/classes/com/sun/tools/javac/jvm/Pool.java	Wed Dec 18 16:05:18 2013 -0500
@@ -71,7 +71,7 @@
         this.pp = pp;
         this.pool = pool;
         this.types = types;
-        this.indices = new HashMap<Object,Integer>(pool.length);
+        this.indices = new HashMap<>(pool.length);
         for (int i = 1; i < pp; i++) {
             if (pool[i] != null) indices.put(pool[i], i);
         }