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 505ed1c5 Inline comment
505ed1c5 is described below

commit 505ed1c5854945a92d0346a87d5783ea6ba99f59
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Oct 31 07:12:11 2023 -0400

    Inline comment
---
 .../org/apache/commons/io/input/UnsynchronizedBufferedInputStream.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStream.java
 
b/src/main/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStream.java
index dfa58423..f3e0dc0f 100644
--- 
a/src/main/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStream.java
+++ 
b/src/main/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStream.java
@@ -196,7 +196,7 @@ public final class UnsynchronizedBufferedInputStream 
extends UnsynchronizedFilte
         } else if (markPos > 0) {
             System.arraycopy(localBuf, markPos, localBuf, 0, localBuf.length - 
markPos);
         }
-        /* Set the new position and mark position */
+        // Set the new position and mark position
         pos -= markPos;
         count = markPos = 0;
         final int bytesread = localIn.read(localBuf, pos, localBuf.length - 
pos);

Reply via email to