Skip to content

Commit 505ed1c

Browse files
committed
Inline comment
1 parent 36995cc commit 505ed1c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ private int fillBuffer(final InputStream localIn, byte[] localBuf) throws IOExce
196196
} else if (markPos > 0) {
197197
System.arraycopy(localBuf, markPos, localBuf, 0, localBuf.length - markPos);
198198
}
199-
/* Set the new position and mark position */
199+
// Set the new position and mark position
200200
pos -= markPos;
201201
count = markPos = 0;
202202
final int bytesread = localIn.read(localBuf, pos, localBuf.length - pos);

0 commit comments

Comments
 (0)