This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
     new 1010f48b Javadoc
1010f48b is described below

commit 1010f48b0cdbc4f824aefcd654de74d520a1f44c
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Apr 3 12:46:07 2023 -0400

    Javadoc
---
 .../java/org/apache/commons/io/input/BoundedInputStream.java   | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/input/BoundedInputStream.java 
b/src/main/java/org/apache/commons/io/input/BoundedInputStream.java
index 14348c32..51bfb2eb 100644
--- a/src/main/java/org/apache/commons/io/input/BoundedInputStream.java
+++ b/src/main/java/org/apache/commons/io/input/BoundedInputStream.java
@@ -37,19 +37,19 @@ import java.io.InputStream;
  */
 public class BoundedInputStream extends InputStream {
 
-    /** The wrapped input stream */
+    /** The wrapped input stream. */
     private final InputStream inputStream;
 
-    /** The max length to provide */
+    /** The max length to read. */
     private final long maxLength;
 
-    /** The number of bytes already returned */
+    /** The number of bytes already returned. */
     private long pos;
 
-    /** The marked position */
+    /** The marked position. */
     private long mark = EOF;
 
-    /** Flag if close should be propagated */
+    /** Flag if close should be propagated. */
     private boolean propagateClose = true;
 
     /**

Reply via email to