Skip to content

Commit 1010f48

Browse files
committed
Javadoc
1 parent d1e2a8e commit 1010f48

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/org/apache/commons/io/input/BoundedInputStream.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@
3737
*/
3838
public class BoundedInputStream extends InputStream {
3939

40-
/** The wrapped input stream */
40+
/** The wrapped input stream. */
4141
private final InputStream inputStream;
4242

43-
/** The max length to provide */
43+
/** The max length to read. */
4444
private final long maxLength;
4545

46-
/** The number of bytes already returned */
46+
/** The number of bytes already returned. */
4747
private long pos;
4848

49-
/** The marked position */
49+
/** The marked position. */
5050
private long mark = EOF;
5151

52-
/** Flag if close should be propagated */
52+
/** Flag if close should be propagated. */
5353
private boolean propagateClose = true;
5454

5555
/**

0 commit comments

Comments
 (0)