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
commit 62e2df7e238ae44cda0dc21deb535b20aee05dd7 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jul 14 17:58:56 2024 -0400 Javadoc --- .../commons/io/input/buffer/CircularBufferInputStreamTest.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/io/input/buffer/CircularBufferInputStreamTest.java b/src/test/java/org/apache/commons/io/input/buffer/CircularBufferInputStreamTest.java index a08405e40..7fe3e96c9 100644 --- a/src/test/java/org/apache/commons/io/input/buffer/CircularBufferInputStreamTest.java +++ b/src/test/java/org/apache/commons/io/input/buffer/CircularBufferInputStreamTest.java @@ -25,9 +25,15 @@ import java.util.Random; import org.junit.jupiter.api.Test; +/** + * Tests {@link CircularBufferInputStream}. + */ public class CircularBufferInputStreamTest { - private final Random rnd = new Random(1530960934483L); // System.currentTimeMillis(), when this test was written. - // Always using the same seed should ensure a reproducible test. + + /** + * System.currentTimeMillis(), when this test was written. Always using the same seed should ensure a reproducible test. + */ + private final Random rnd = new Random(1530960934483L); /** * Create a large, but random input buffer.