< prev index next >

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

Print this page

        

@@ -77,11 +77,11 @@
      *          cause the corresponding method of the underlying {@code Writer}
      *          to throw an {@code IndexOutOfBoundsException}
      *
      * @throws  IOException  If an I/O error occurs
      */
-    public void write(char cbuf[], int off, int len) throws IOException {
+    public void write(char[] cbuf, int off, int len) throws IOException {
         out.write(cbuf, off, len);
     }
 
     /**
      * Writes a portion of a string.
< prev index next >