This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch 1.x in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git
commit 10866cf6f5b030f8cc707a140d3e4361976e83ab Author: Gary Gregory <[email protected]> AuthorDate: Sun Jan 4 12:44:21 2026 -0500 Use a code comment, not Javadoc inside a method --- .../java/org/apache/commons/fileupload/ProgressListenerTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/java/org/apache/commons/fileupload/ProgressListenerTest.java b/src/test/java/org/apache/commons/fileupload/ProgressListenerTest.java index 0412f498..0101ea2a 100644 --- a/src/test/java/org/apache/commons/fileupload/ProgressListenerTest.java +++ b/src/test/java/org/apache/commons/fileupload/ProgressListenerTest.java @@ -77,10 +77,10 @@ public class ProgressListenerTest { try (InputStream istream = stream.openStream()) { final int maxIn = 16384; for (int j = 0; j < maxIn + i; j++) { - /** - * This used to be assertEquals((byte) j, (byte) istream.read()); but this seems to trigger a bug in JRockit, so we express the same like - * this: - */ + // + // This used to be assertEquals((byte) j, (byte) istream.read()); but this seems to trigger a bug in JRockit, so we express the same like + // this: + // final byte b1 = (byte) j; final byte b2 = (byte) istream.read(); if (b1 != b2) {
