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
The following commit(s) were added to refs/heads/master by this push: new 45af6de Comment empty block. 45af6de is described below commit 45af6de12461c2836e16e5a6e5884adac8068891 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jul 12 09:11:46 2021 -0400 Comment empty block. --- .../java/org/apache/commons/io/input/AbstractInputStreamTest.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java b/src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java index 93c6b26..d6ac78d 100644 --- a/src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java +++ b/src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java @@ -30,9 +30,10 @@ import org.junit.jupiter.api.Test; /** * Tests functionality of {@link BufferedFileChannelInputStream}. - * + * <p> * This class was ported and adapted from Apache Spark commit 933dc6cb7b3de1d8ccaf73d124d6eb95b947ed19 where it was * called {@code GenericFileInputStreamSuite}. + * </p> */ public abstract class AbstractInputStreamTest { @@ -137,7 +138,7 @@ public abstract class AbstractInputStreamTest { final byte[] buf = new byte[1024]; int read; while ((read = is.read(buf, 0, buf.length)) != -1) { - + // empty } final int readAfterEOF = is.read(buf, 0, buf.length);