< prev index next >

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

Print this page

        

@@ -57,11 +57,11 @@
 
             int total = dis.readInt();
             int bkNum = dis.readInt();
             int cpNum = dis.readInt();
             int cpEnd = dis.readInt();
-            byte ba[] = new byte[cpEnd];
+            byte[] ba = new byte[cpEnd];
             lookup = new int[bkNum * 256];
             bkIndices = new int[(Character.MAX_CODE_POINT + 1) >> 8];
             strPool = new byte[total - cpEnd];
             cpEntries = new int[cpNum * 3];
             hsIndices = new int[(cpNum / 2) | 1];
< prev index next >