--- old/src/java.base/share/classes/java/io/OutputStreamWriter.java 2018-09-28 11:27:02.457908797 +0700 +++ new/src/java.base/share/classes/java/io/OutputStreamWriter.java 2018-09-28 11:27:00.593908797 +0700 @@ -207,7 +207,7 @@ * * @throws IOException If an I/O error occurs */ - public void write(char cbuf[], int off, int len) throws IOException { + public void write(char[] cbuf, int off, int len) throws IOException { se.write(cbuf, off, len); }