< prev index next >

src/java.base/share/classes/java/io/BufferedInputStream.java

Print this page

        

@@ -334,11 +334,11 @@
      *             the stream has been reached.
      * @exception  IOException  if this input stream has been closed by
      *                          invoking its {@link #close()} method,
      *                          or an I/O error occurs.
      */
-    public synchronized int read(byte b[], int off, int len)
+    public synchronized int read(byte[] b, int off, int len)
         throws IOException
     {
         getBufIfOpen(); // Check for closed stream
         if ((off | len | (off + len) | (b.length - (off + len))) < 0) {
             throw new IndexOutOfBoundsException();
< prev index next >