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

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


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

commit ff762e6c262aa830235b1fe302df474ba4a5cf5b
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