--- old/src/java.base/share/classes/com/sun/java/util/jar/pack/CodingChooser.java 2018-09-28 11:26:02.489908797 +0700 +++ new/src/java.base/share/classes/com/sun/java/util/jar/pack/CodingChooser.java 2018-09-28 11:26:02.101908797 +0700 @@ -1158,7 +1158,7 @@ count++; if (out != null) out.write(b); } - public void write(byte b[], int off, int len) throws IOException { + public void write(byte[] b, int off, int len) throws IOException { count += len; if (out != null) out.write(b, off, len); }