< prev index next >

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

Print this page

        

@@ -107,11 +107,11 @@
         }
     }
 
     // implement ICUBinary.Authenticate
     private static final class IsAcceptable implements ICUBinary.Authenticate {
-        public boolean isDataVersionAcceptable(byte version[]) {
+        public boolean isDataVersionAcceptable(byte[] version) {
             return version[0]==2;
         }
     }
 
     // property access functions ------------------------------------------- ***

@@ -186,14 +186,14 @@
             return getMirror(c, props);
         }
     }
 
     // data members -------------------------------------------------------- ***
-    private int indexes[];
-    private int mirrors[];
-    private byte jgArray[];
-    private byte jgArray2[];
+    private int[] indexes;
+    private int[] mirrors;
+    private byte[] jgArray;
+    private byte[] jgArray2;
 
     private Trie2_16 trie;
 
     // data format constants ----------------------------------------------- ***
     private static final String DATA_FILE_NAME = "/sun/text/resources/ubidi.icu";
< prev index next >