--- old/src/java.base/share/classes/java/io/LineNumberReader.java 2018-09-28 11:26:45.305908797 +0700 +++ new/src/java.base/share/classes/java/io/LineNumberReader.java 2018-09-28 11:26:44.373908797 +0700 @@ -163,7 +163,7 @@ * @throws IndexOutOfBoundsException {@inheritDoc} */ @SuppressWarnings("fallthrough") - public int read(char cbuf[], int off, int len) throws IOException { + public int read(char[] cbuf, int off, int len) throws IOException { synchronized (lock) { int n = super.read(cbuf, off, len); @@ -212,7 +212,7 @@ private static final int maxSkipBufferSize = 8192; /** Skip buffer, null until allocated */ - private char skipBuffer[] = null; + private char[] skipBuffer = null; /** * Skip characters.