--- old/src/java.base/share/classes/java/io/LineNumberInputStream.java 2018-09-28 11:26:42.609908797 +0700 +++ new/src/java.base/share/classes/java/io/LineNumberInputStream.java 2018-09-28 11:26:42.141908797 +0700 @@ -127,7 +127,7 @@ * @exception IOException if an I/O error occurs. * @see java.io.LineNumberInputStream#read() */ - public int read(byte b[], int off, int len) throws IOException { + public int read(byte[] b, int off, int len) throws IOException { if (b == null) { throw new NullPointerException(); } else if ((off < 0) || (off > b.length) || (len < 0) || @@ -179,7 +179,7 @@ public long skip(long n) throws IOException { int chunk = 2048; long remaining = n; - byte data[]; + byte[] data; int nr; if (n <= 0) {