Skip to content

Commit 45af6de

Browse files
committed
Comment empty block.
1 parent 95248e3 commit 45af6de

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@
3030

3131
/**
3232
* Tests functionality of {@link BufferedFileChannelInputStream}.
33-
*
33+
* <p>
3434
* This class was ported and adapted from Apache Spark commit 933dc6cb7b3de1d8ccaf73d124d6eb95b947ed19 where it was
3535
* called {@code GenericFileInputStreamSuite}.
36+
* </p>
3637
*/
3738
public abstract class AbstractInputStreamTest {
3839

@@ -137,7 +138,7 @@ public void testReadPastEOF() throws IOException {
137138
final byte[] buf = new byte[1024];
138139
int read;
139140
while ((read = is.read(buf, 0, buf.length)) != -1) {
140-
141+
// empty
141142
}
142143

143144
final int readAfterEOF = is.read(buf, 0, buf.length);

0 commit comments

Comments
 (0)