src/share/classes/java/lang/CharacterName.java

Print this page
rev 3186 : 6880112: Project Coin: Port JDK core library code to use diamond operator

@@ -79,11 +79,11 @@
                 lookup[hi][cp&0xff] = (nameOff << 8) | len;
                 nameOff += len;
             } while (cpOff < cpEnd);
             strPool = new byte[total - cpEnd];
             dis.readFully(strPool);
-            refStrPool = new SoftReference<byte[]>(strPool);
+            refStrPool = new SoftReference<>(strPool);
         } catch (Exception x) {
             throw new InternalError(x.getMessage());
         } finally {
             try {
                 if (dis != null)