--- old/src/java.base/share/classes/java/io/StringBufferInputStream.java 2018-09-28 11:28:15.833908797 +0700 +++ new/src/java.base/share/classes/java/io/StringBufferInputStream.java 2018-09-28 11:28:15.433908797 +0700 @@ -109,7 +109,7 @@ * the stream has been reached. */ @SuppressWarnings("deprecation") - public synchronized int read(byte b[], int off, int len) { + public synchronized int read(byte[] b, int off, int len) { if (b == null) { throw new NullPointerException(); } else if ((off < 0) || (off > b.length) || (len < 0) ||