Skip to content

Commit 72f74df

Browse files
author
Lance Andersen
committedNov 3, 2022
8292427: Improve specification of InflaterInputStream.fill()
Reviewed-by: bpb, alanb, simonis
1 parent 53905e6 commit 72f74df

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎src/java.base/share/classes/java/util/zip/InflaterInputStream.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class InflaterInputStream extends FilterInputStream {
5252
protected byte[] buf;
5353

5454
/**
55-
* Length of input buffer.
55+
* The total number of bytes read into the input buffer.
5656
*/
5757
protected int len;
5858

@@ -251,7 +251,13 @@ public void close() throws IOException {
251251

252252
/**
253253
* Fills input buffer with more data to decompress.
254+
* @implSpec
255+
* This method will read up to {@link #buf}.length bytes into the input
256+
* buffer, {@link #buf}, starting at element {@code 0}. The {@link #len}
257+
* field will be set to the number of bytes read.
254258
* @throws IOException if an I/O error has occurred
259+
* @throws EOFException if the end of input stream has been reached
260+
* unexpectedly
255261
*/
256262
protected void fill() throws IOException {
257263
ensureOpen();

0 commit comments

Comments
 (0)
Please sign in to comment.