< prev index next >

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

Print this page

        

@@ -36,12 +36,12 @@
      */
     public static final int DONE = NormalizerBase.DONE;
 
     //cache the decomps mapping, so the seconde composedcharIter does
     //not need to get the data again.
-    private static int chars[];
-    private static String decomps[];
+    private static int[] chars;
+    private static String[] decomps;
     private static int decompNum;
 
     static {
         int maxNum = 2100;
         chars = new int[maxNum];
< prev index next >