--- old/src/java.base/share/classes/java/io/PipedOutputStream.java 2018-09-28 11:27:15.273908797 +0700 +++ new/src/java.base/share/classes/java/io/PipedOutputStream.java 2018-09-28 11:27:13.705908797 +0700 @@ -135,7 +135,7 @@ * {@link #connect(java.io.PipedInputStream) unconnected}, * closed, or if an I/O error occurs. */ - public void write(byte b[], int off, int len) throws IOException { + public void write(byte[] b, int off, int len) throws IOException { if (sink == null) { throw new IOException("Pipe not connected"); } else if (b == null) {