< prev index next >

src/java.base/share/classes/sun/net/www/http/PosterOutputStream.java

Print this page

        

@@ -69,11 +69,11 @@
      *
      * @param   b     the data.
      * @param   off   the start offset in the data.
      * @param   len   the number of bytes to write.
      */
-    public synchronized void write(byte b[], int off, int len) {
+    public synchronized void write(byte[] b, int off, int len) {
         if (closed) {
             return;
         }
         super.write (b, off, len);
     }
< prev index next >