--- old/src/java.base/share/classes/java/io/ObjectOutput.java 2018-09-28 11:26:51.325908797 +0700 +++ new/src/java.base/share/classes/java/io/ObjectOutput.java 2018-09-28 11:26:49.685908797 +0700 @@ -62,7 +62,7 @@ * @param b the data to be written * @exception IOException If an I/O error has occurred. */ - public void write(byte b[]) throws IOException; + public void write(byte[] b) throws IOException; /** * Writes a sub array of bytes. @@ -71,7 +71,7 @@ * @param len the number of bytes that are written * @exception IOException If an I/O error has occurred. */ - public void write(byte b[], int off, int len) throws IOException; + public void write(byte[] b, int off, int len) throws IOException; /** * Flushes the stream. This will write any buffered