< prev index next >

src/java.base/share/classes/sun/net/www/MeteredStream.java

Print this page

        

@@ -124,11 +124,11 @@
             justRead(c);
         }
         return c;
     }
 
-    public synchronized int read(byte b[], int off, int len)
+    public synchronized int read(byte[] b, int off, int len)
                 throws java.io.IOException {
         if (closed) {
             return -1;
         }
         int n = in.read(b, off, len);
< prev index next >