--- old/src/java.base/share/classes/javax/crypto/CipherInputStream.java 2018-09-28 11:29:54.965908797 +0700 +++ new/src/java.base/share/classes/javax/crypto/CipherInputStream.java 2018-09-28 11:29:54.565908797 +0700 @@ -208,7 +208,7 @@ * @exception IOException if an I/O error occurs. * @see java.io.InputStream#read(byte[], int, int) */ - public int read(byte b[]) throws IOException { + public int read(byte[] b) throws IOException { return read(b, 0, b.length); } @@ -228,7 +228,7 @@ * @exception IOException if an I/O error occurs. * @see java.io.InputStream#read() */ - public int read(byte b[], int off, int len) throws IOException { + public int read(byte[] b, int off, int len) throws IOException { if (ostart >= ofinish) { // we loop for new data as the spec says we are blocking int i = 0;