Skip to content

Commit 8d1b994

Browse files
author
Gary Gregory
committed
Comment out System.out.println.
1 parent 70c6f0c commit 8d1b994

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public void testLongFile() throws Exception {
9898
while (lines.isEmpty() || !lines.get(lines.size() - 1).equals("SBTOURIST")) {
9999
lines = listener.getLines();
100100
}
101-
System.out.println("Elapsed: " + (System.currentTimeMillis() - start));
101+
// System.out.println("Elapsed: " + (System.currentTimeMillis() - start));
102102

103103
listener.clear();
104104
}
@@ -127,7 +127,7 @@ public void testBufferBreak() throws Exception {
127127

128128
@Test
129129
public void testMultiByteBreak() throws Exception {
130-
System.out.println("testMultiByteBreak() Default charset: "+Charset.defaultCharset().displayName());
130+
// System.out.println("testMultiByteBreak() Default charset: " + Charset.defaultCharset().displayName());
131131
final long delay = 50;
132132
final File origin = new File(this.getClass().getResource("/test-file-utf8.bin").toURI());
133133
final File file = new File(getTestDirectory(), "testMultiByteBreak.txt");

0 commit comments

Comments
 (0)