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-fileupload.git
The following commit(s) were added to refs/heads/master by this push:
new 5c89193 Comment
5c89193 is described below
commit 5c89193ef1e254df526f0cefc07952f503f4c9e2
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jun 6 20:56:58 2023 -0400
Comment
---
.../main/java/org/apache/commons/fileupload2/MultipartStream.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/MultipartStream.java
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/MultipartStream.java
index 974e717..8640e82 100644
---
a/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/MultipartStream.java
+++
b/commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/MultipartStream.java
@@ -411,9 +411,9 @@ public class MultipartStream {
* @param byteCount Number of bytes, which have been read.
*/
void noteBytesRead(final int byteCount) {
- /*
- * Indicates, that the given number of bytes have been read from
the input stream.
- */
+ //
+ // Indicates, that the given number of bytes have been read from
the input stream.
+ //
bytesRead += byteCount;
notifyListener();
}