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 30f8dc50a2f30a22dcd5d2ef1ab216da66ed9a29 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Apr 6 09:31:47 2025 -0400 Javadoc --- .../commons/io/input/ReversedLinesFileReaderParamBlockSizeTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/io/input/ReversedLinesFileReaderParamBlockSizeTest.java b/src/test/java/org/apache/commons/io/input/ReversedLinesFileReaderParamBlockSizeTest.java index 6c8885eab..0926a925a 100644 --- a/src/test/java/org/apache/commons/io/input/ReversedLinesFileReaderParamBlockSizeTest.java +++ b/src/test/java/org/apache/commons/io/input/ReversedLinesFileReaderParamBlockSizeTest.java @@ -82,7 +82,9 @@ static void assertEqualsAndNoLineBreaks(final String expected, final String actu assertEquals(expected, actual, messageSupplier); } - // small and uneven block sizes are not used in reality but are good to show that the algorithm is solid + /** + * Small and uneven block sizes are not used in reality but are good to show that the algorithm is solid. + */ public static IntStream blockSizes() { return IntStream.of(1, 3, 8, 256, 4096); }