File tree 1 file changed +7
-1
lines changed
src/java.base/share/classes/java/util/zip
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public class InflaterInputStream extends FilterInputStream {
52
52
protected byte [] buf ;
53
53
54
54
/**
55
- * Length of input buffer.
55
+ * The total number of bytes read into the input buffer.
56
56
*/
57
57
protected int len ;
58
58
@@ -251,7 +251,13 @@ public void close() throws IOException {
251
251
252
252
/**
253
253
* 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.
254
258
* @throws IOException if an I/O error has occurred
259
+ * @throws EOFException if the end of input stream has been reached
260
+ * unexpectedly
255
261
*/
256
262
protected void fill () throws IOException {
257
263
ensureOpen ();
You can’t perform that action at this time.
0 commit comments