< prev index next >

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

Print this page

        

@@ -69,11 +69,11 @@
      * Reads characters into a portion of an array.
      *
      * @exception  IOException  If an I/O error occurs
      * @exception  IndexOutOfBoundsException {@inheritDoc}
      */
-    public int read(char cbuf[], int off, int len) throws IOException {
+    public int read(char[] cbuf, int off, int len) throws IOException {
         return in.read(cbuf, off, len);
     }
 
     /**
      * Skips characters.
< prev index next >