--- old/src/java.base/share/classes/sun/net/TelnetInputStream.java 2018-09-28 11:30:14.553908797 +0700 +++ new/src/java.base/share/classes/sun/net/TelnetInputStream.java 2018-09-28 11:30:14.133908797 +0700 @@ -125,7 +125,7 @@ } /** read into a byte array */ - public int read(byte bytes[]) throws IOException { + public int read(byte[] bytes) throws IOException { return read(bytes, 0, bytes.length); } @@ -133,7 +133,7 @@ * Read into a byte array at offset off for length length * bytes. */ - public int read(byte bytes[], int off, int length) throws IOException { + public int read(byte[] bytes, int off, int length) throws IOException { if (binaryMode) return super.read(bytes, off, length);