You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2016/06/03 15:39:49 UTC

svn commit: r1746734 - /tomcat/tc8.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java

Author: markt
Date: Fri Jun  3 15:39:49 2016
New Revision: 1746734

URL: http://svn.apache.org/viewvc?rev=1746734&view=rev
Log:
Remove the debug code

Modified:
    tomcat/tc8.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java

Modified: tomcat/tc8.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java
URL: http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java?rev=1746734&r1=1746733&r2=1746734&view=diff
==============================================================================
--- tomcat/tc8.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java (original)
+++ tomcat/tc8.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java Fri Jun  3 15:39:49 2016
@@ -922,11 +922,9 @@ public class TestAbstractHttp11Processor
     private void validateResponse(BufferedReader reader) throws IOException {
         // First line has the response code and should always be 200
         String line = reader.readLine();
-        System.out.println(line);
         Assert.assertEquals("HTTP/1.1 200 OK", line);
         while (!"OK".equals(line)) {
             line = reader.readLine();
-            System.out.println(line);
         }
     }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org