--- old/src/java.base/share/classes/java/io/BufferedOutputStream.java 2018-09-28 11:26:09.965908797 +0700 +++ new/src/java.base/share/classes/java/io/BufferedOutputStream.java 2018-09-28 11:26:09.573908797 +0700 @@ -38,7 +38,7 @@ /** * The internal buffer where data is stored. */ - protected byte buf[]; + protected byte[] buf; /** * The number of valid bytes in the buffer. This value is always @@ -114,7 +114,7 @@ * @exception IOException if an I/O error occurs. */ @Override - public synchronized void write(byte b[], int off, int len) throws IOException { + public synchronized void write(byte[] b, int off, int len) throws IOException { if (len >= buf.length) { /* If the request length exceeds the size of the output buffer, flush the output buffer and then write the data directly.