--- old/src/java.base/share/classes/java/io/FilterReader.java 2018-09-28 11:26:35.489908797 +0700 +++ new/src/java.base/share/classes/java/io/FilterReader.java 2018-09-28 11:26:35.025908797 +0700 @@ -71,7 +71,7 @@ * @exception IOException If an I/O error occurs * @exception IndexOutOfBoundsException {@inheritDoc} */ - public int read(char cbuf[], int off, int len) throws IOException { + public int read(char[] cbuf, int off, int len) throws IOException { return in.read(cbuf, off, len); }