< prev index next >

src/java.base/share/classes/sun/text/UCompactIntArray.java

Print this page

        

@@ -195,11 +195,11 @@
     private static final int INDEXSHIFT = (16-BLOCKSHIFT);
     private static final int INDEXCOUNT = (1<<INDEXSHIFT);
     private static final int BLOCKMASK = BLOCKCOUNT - 1;
 
     private int defaultValue;
-    private int values[][];
-    private short indices[][];
+    private int[][] values;
+    private short[][] indices;
     private boolean isCompact;
     private boolean[][] blockTouched;
     private boolean[] planeTouched;
 };
< prev index next >