< prev index next >

src/java.base/share/classes/javax/crypto/CipherInputStream.java

Print this page

        

@@ -206,11 +206,11 @@
      *             <code>-1</code> is there is no more data because the end of
      *             the stream has been reached.
      * @exception  IOException  if an I/O error occurs.
      * @see        java.io.InputStream#read(byte[], int, int)
      */
-    public int read(byte b[]) throws IOException {
+    public int read(byte[] b) throws IOException {
         return read(b, 0, b.length);
     }
 
     /**
      * Reads up to <code>len</code> bytes of data from this input stream

@@ -226,11 +226,11 @@
      *             <code>-1</code> if there is no more data because the end of
      *             the stream has been reached.
      * @exception  IOException  if an I/O error occurs.
      * @see        java.io.InputStream#read()
      */
-    public int read(byte b[], int off, int len) throws IOException {
+    public int read(byte[] b, int off, int len) throws IOException {
         if (ostart >= ofinish) {
             // we loop for new data as the spec says we are blocking
             int i = 0;
             while (i == 0) i = getMoreData();
             if (i == -1) return -1;
< prev index next >