You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStream.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -276,23 +276,23 @@ public int read() throws IOException {
276
276
* set and the requested number of bytes is larger than the receiver's buffer size, this implementation bypasses the buffer and simply places the results
277
277
* directly into {@code buffer}.
278
278
*
279
-
* @param buffer the byte array in which to store the bytes read.
279
+
* @param dest the byte array in which to store the bytes read.
280
280
* @param offset the initial position in {@code buffer} to store the bytes read from this stream.
281
281
* @param length the maximum number of bytes to store in {@code buffer}.
282
282
* @return the number of bytes actually read or -1 if end of stream.
283
283
* @throws IndexOutOfBoundsException if {@code offset < 0} or {@code length < 0}, or if {@code offset + length} is greater than the size of {@code buffer}.
284
284
* @throws IOException if the stream is already closed or another IOException occurs.
0 commit comments