--- old/src/java.base/share/classes/java/util/jar/JarVerifier.java 2018-09-28 11:29:43.865908797 +0700 +++ new/src/java.base/share/classes/java/util/jar/JarVerifier.java 2018-09-28 11:29:43.489908797 +0700 @@ -82,7 +82,7 @@ private volatile ManifestDigester manDig; /** the bytes for the manDig object */ - byte manifestRawBytes[] = null; + byte[] manifestRawBytes = null; /** controls eager signature validation */ boolean eagerValidation; @@ -93,7 +93,7 @@ /** collect -DIGEST-MANIFEST values for blacklist */ private List manifestDigests; - public JarVerifier(byte rawBytes[]) { + public JarVerifier(byte[] rawBytes) { manifestRawBytes = rawBytes; sigFileSigners = new Hashtable<>(); verifiedSigners = new Hashtable<>(); @@ -257,7 +257,7 @@ if (uname.endsWith(".SF")) { String key = uname.substring(0, uname.length()-3); - byte bytes[] = baos.toByteArray(); + byte[] bytes = baos.toByteArray(); // add to sigFileData in case future blocks need it sigFileData.put(key, bytes); // check pending blocks, we can now process @@ -461,7 +461,7 @@ } } - public int read(byte b[], int off, int len) throws IOException { + public int read(byte[] b, int off, int len) throws IOException { ensureOpen(); if ((numLeft > 0) && (numLeft < len)) { len = (int)numLeft;