Skip to content

Commit 62e2df7

Browse files
committed
Javadoc
1 parent db86ede commit 62e2df7

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

src/test/java/org/apache/commons/io/input/buffer/CircularBufferInputStreamTest.java

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,15 @@
2525

2626
import org.junit.jupiter.api.Test;
2727

28+
/**
29+
* Tests {@link CircularBufferInputStream}.
30+
*/
2831
public class CircularBufferInputStreamTest {
29-
private final Random rnd = new Random(1530960934483L); // System.currentTimeMillis(), when this test was written.
30-
// Always using the same seed should ensure a reproducible test.
32+
33+
/**
34+
* System.currentTimeMillis(), when this test was written. Always using the same seed should ensure a reproducible test.
35+
*/
36+
private final Random rnd = new Random(1530960934483L);
3137

3238
/**
3339
* Create a large, but random input buffer.

0 commit comments

Comments
 (0)