You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/06/07 00:57:02 UTC

[commons-fileupload] branch master updated: Comment

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 <ga...@gmail.com>
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();
         }