--- old/src/java.base/share/classes/java/io/InputStreamReader.java 2018-09-28 11:26:40.057908797 +0700 +++ new/src/java.base/share/classes/java/io/InputStreamReader.java 2018-09-28 11:26:39.641908797 +0700 @@ -181,7 +181,7 @@ * @exception IOException If an I/O error occurs * @exception IndexOutOfBoundsException {@inheritDoc} */ - public int read(char cbuf[], int offset, int length) throws IOException { + public int read(char[] cbuf, int offset, int length) throws IOException { return sd.read(cbuf, offset, length); }