We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1e2a8e commit 1010f48Copy full SHA for 1010f48
1 file changed
src/main/java/org/apache/commons/io/input/BoundedInputStream.java
@@ -37,19 +37,19 @@
37
*/
38
public class BoundedInputStream extends InputStream {
39
40
- /** The wrapped input stream */
+ /** The wrapped input stream. */
41
private final InputStream inputStream;
42
43
- /** The max length to provide */
+ /** The max length to read. */
44
private final long maxLength;
45
46
- /** The number of bytes already returned */
+ /** The number of bytes already returned. */
47
private long pos;
48
49
- /** The marked position */
+ /** The marked position. */
50
private long mark = EOF;
51
52
- /** Flag if close should be propagated */
+ /** Flag if close should be propagated. */
53
private boolean propagateClose = true;
54
55
/**
0 commit comments