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/changes/changes.xml
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,7 @@ The <action> type attribute can be add,update,fix,remove.
68
68
<actiondev="ggregory"type="add"issue="IO-861"due-to="Gary Gregory">Add ProxyInputStream.AbstractBuilder. Supports setting a consumer for ProxyInputStream.afterRead(int).</action>
69
69
<actiondev="ggregory"type="add"due-to="Gary Gregory">Add support to AutoCloseInputStream for setting a consumer for ProxyInputStream.afterRead(int).</action>
70
70
<actiondev="ggregory"type="add"due-to="Gary Gregory">Add support to BOMInputStream for setting a consumer for ProxyInputStream.afterRead(int).</action>
71
+
<actiondev="ggregory"type="add"issue="IO-861"due-to="Gary Gregory">Add support to BoundedInputStream for setting a consumer for ProxyInputStream.afterRead(int).</action>
71
72
<!-- UPDATE -->
72
73
<actiondev="ggregory"type="update"due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 74 to 78 #670, #676, #679, #688.</action>
73
74
<actiondev="ggregory"type="update"due-to="Gary Gregory">Bump commons.bytebuddy.version from 1.15.1 to 1.15.10 #672, #673, #685, #686, #694, #696, #698.</action>
// Some badly designed methods - e.g. the Servlet API - overload length
286
340
// such that "-1" means stream finished
287
-
this(inputStream, 0, maxCount, true);
288
-
}
289
-
290
-
/**
291
-
* Constructs a new {@link BoundedInputStream} that wraps the given input stream and limits it to a certain size.
292
-
*
293
-
* @param inputStream The wrapped input stream.
294
-
* @param count The current number of bytes read.
295
-
* @param maxCount The maximum number of bytes to return.
296
-
* @param propagateClose {@code true} if calling {@link #close()} propagates to the {@code close()} method of the underlying stream or {@code false} if it
0 commit comments