< prev index next >

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

Print this page

        

@@ -347,11 +347,11 @@
     }
 
     public NormalizerImpl() {}
 
     private static final class IsAcceptable implements ICUBinary.Authenticate {
-        public boolean isDataVersionAcceptable(byte version[]) {
+        public boolean isDataVersionAcceptable(byte[] version) {
             return version[0]==3;
         }
     }
     private static final IsAcceptable IS_ACCEPTABLE = new IsAcceptable();
     private static final int DATA_FORMAT = 0x4e726d32;  // "Nrm2"

@@ -1756,11 +1756,11 @@
 
     /**
      * Get the canonical decomposition
      * sherman  for ComposedCharIter
      */
-    public static int getDecompose(int chars[], String decomps[]) {
+    public static int getDecompose(int[] chars, String[] decomps) {
         Normalizer2 impl = Normalizer2.getNFDInstance();
 
         int length=0;
         int norm16 = 0;
         int ch = -1;
< prev index next >