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 8d1b994  Comment out System.out.println.
8d1b994 is described below

commit 8d1b994a15d0ac85ecb45c87b1ba3defd02972ab
Author: Gary Gregory <gardgreg...@gmail.com>
AuthorDate: Tue Aug 6 08:41:21 2019 -0400

    Comment out System.out.println.
---
 src/test/java/org/apache/commons/io/input/TailerTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/io/input/TailerTest.java 
b/src/test/java/org/apache/commons/io/input/TailerTest.java
index 66b5c68..0bd0e3e 100644
--- a/src/test/java/org/apache/commons/io/input/TailerTest.java
+++ b/src/test/java/org/apache/commons/io/input/TailerTest.java
@@ -98,7 +98,7 @@ public class TailerTest {
         while (lines.isEmpty() || !lines.get(lines.size() - 
1).equals("SBTOURIST")) {
             lines = listener.getLines();
         }
-        System.out.println("Elapsed: " + (System.currentTimeMillis() - start));
+        // System.out.println("Elapsed: " + (System.currentTimeMillis() - 
start));
 
         listener.clear();
     }
@@ -127,7 +127,7 @@ public class TailerTest {
 
     @Test
     public void testMultiByteBreak() throws Exception {
-        System.out.println("testMultiByteBreak() Default charset: 
"+Charset.defaultCharset().displayName());
+        // System.out.println("testMultiByteBreak() Default charset: " + 
Charset.defaultCharset().displayName());
         final long delay = 50;
         final File origin = new 
File(this.getClass().getResource("/test-file-utf8.bin").toURI());
         final File file = new File(getTestDirectory(), 
"testMultiByteBreak.txt");

Reply via email to