< prev index next >

src/java.base/share/classes/sun/text/normalizer/Utility.java

Print this page

        

@@ -165,11 +165,11 @@
             if (offset < length &&
                     UTF16.isLeadSurrogate((char) result)) {
                 int ahead = offset+1;
                 c = s.charAt(offset); // [sic] get 16-bit code unit
                 if (c == '\\' && ahead < length) {
-                    int o[] = new int[] { ahead };
+                    int[] o = new int[] { ahead };
                     c = unescapeAt(s, o);
                     ahead = o[0];
                 }
                 if (UTF16.isTrailSurrogate((char) c)) {
                     offset = ahead;

@@ -221,11 +221,11 @@
             return '-' + result;
         }
         return result;
     }
 
-    static final char DIGITS[] = {
+    static final char[] DIGITS = {
         '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
         'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
         'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T',
         'U', 'V', 'W', 'X', 'Y', 'Z'
     };
< prev index next >