--- old/src/java.base/share/classes/java/io/ObjectInput.java 2018-09-28 11:26:47.577908797 +0700 +++ new/src/java.base/share/classes/java/io/ObjectInput.java 2018-09-28 11:26:47.029908797 +0700 @@ -67,7 +67,7 @@ * returned when the end of the stream is reached. * @exception IOException If an I/O error has occurred. */ - public int read(byte b[]) throws IOException; + public int read(byte[] b) throws IOException; /** * Reads into an array of bytes. This method will @@ -79,7 +79,7 @@ * returned when the end of the stream is reached. * @exception IOException If an I/O error has occurred. */ - public int read(byte b[], int off, int len) throws IOException; + public int read(byte[] b, int off, int len) throws IOException; /** * Skips n bytes of input.