< prev index next >

src/java.base/share/classes/sun/net/TelnetOutputStream.java

Print this page

        

@@ -125,11 +125,11 @@
 
     /**
      * Write the bytes at offset <i>off</i> in buffer <i>bytes</i> for
      * <i>length</i> bytes.
      */
-    public void write(byte bytes[], int off, int length) throws IOException {
+    public void write(byte[] bytes, int off, int length) throws IOException {
         if (binaryMode) {
             super.write(bytes, off, length);
             return;
         }
 
< prev index next >