--- old/src/java.base/share/classes/java/io/SequenceInputStream.java 2018-09-28 11:28:08.733908797 +0700 +++ new/src/java.base/share/classes/java/io/SequenceInputStream.java 2018-09-28 11:28:07.005908797 +0700 @@ -185,7 +185,7 @@ * b.length - off * @exception IOException if an I/O error occurs. */ - public int read(byte b[], int off, int len) throws IOException { + public int read(byte[] b, int off, int len) throws IOException { if (in == null) { return -1; } else if (b == null) {