--- old/src/java.base/share/classes/sun/net/TelnetOutputStream.java 2018-09-28 11:30:15.973908797 +0700 +++ new/src/java.base/share/classes/sun/net/TelnetOutputStream.java 2018-09-28 11:30:15.561908797 +0700 @@ -127,7 +127,7 @@ * Write the bytes at offset off in buffer bytes for * length bytes. */ - public void write(byte bytes[], int off, int length) throws IOException { + public void write(byte[] bytes, int off, int length) throws IOException { if (binaryMode) { super.write(bytes, off, length); return;