This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch branch_1x
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/branch_1x by this push:
     new 3b22bc9  rm println from unit tests
3b22bc9 is described below

commit 3b22bc9492ef9a944f8341dbf5b69164251938b7
Author: tallison <[email protected]>
AuthorDate: Thu Nov 21 08:43:37 2019 -0500

    rm println from unit tests
---
 .../src/test/java/org/apache/tika/sax/XHTMLContentHandlerTest.java     | 3 ---
 1 file changed, 3 deletions(-)

diff --git 
a/tika-core/src/test/java/org/apache/tika/sax/XHTMLContentHandlerTest.java 
b/tika-core/src/test/java/org/apache/tika/sax/XHTMLContentHandlerTest.java
index e2ae019..eb24970 100644
--- a/tika-core/src/test/java/org/apache/tika/sax/XHTMLContentHandlerTest.java
+++ b/tika-core/src/test/java/org/apache/tika/sax/XHTMLContentHandlerTest.java
@@ -168,7 +168,6 @@ public class XHTMLContentHandlerTest {
         xhtml.endDocument();
         
         String[] words = getRealWords(output.toString());
-        System.out.println(words[0]);
         assertEquals(1, words.length);
         assertEquals("a\ufffdz", words[0]);
     }
@@ -182,7 +181,6 @@ public class XHTMLContentHandlerTest {
         xhtml.endDocument();
         
         String[] words = getRealWords(output.toString());
-        System.out.println(words[0]);
         assertEquals(1, words.length);
         assertEquals("a\ufffdz", words[0]);
     }
@@ -196,7 +194,6 @@ public class XHTMLContentHandlerTest {
         xhtml.endDocument();
         
         String[] words = getRealWords(output.toString());
-        System.out.println(words[0]);
         assertEquals(1, words.length);
         assertEquals("a\ufffdz", words[0]);
     }

Reply via email to