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/02 19:57:37 UTC

svn commit: r1746620 - /tomcat/trunk/test/org/apache/coyote/http11/TestHttp11Processor.java

Author: markt
Date: Thu Jun  2 19:57:37 2016
New Revision: 1746620

URL: http://svn.apache.org/viewvc?rev=1746620&view=rev
Log:
Minor clean-up

Modified:
    tomcat/trunk/test/org/apache/coyote/http11/TestHttp11Processor.java

Modified: tomcat/trunk/test/org/apache/coyote/http11/TestHttp11Processor.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/coyote/http11/TestHttp11Processor.java?rev=1746620&r1=1746619&r2=1746620&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/coyote/http11/TestHttp11Processor.java (original)
+++ tomcat/trunk/test/org/apache/coyote/http11/TestHttp11Processor.java Thu Jun  2 19:57:37 2016
@@ -765,7 +765,7 @@ public class TestHttp11Processor extends
     }
 
 
-    private class Bug57621Client extends SimpleHttpClient {
+    private static class Bug57621Client extends SimpleHttpClient {
 
         private Exception doRequest() {
             try {
@@ -827,22 +827,19 @@ public class TestHttp11Processor extends
     }
 
 
-    private class Bug59310Servlet extends HttpServlet {
+    private static class Bug59310Servlet extends HttpServlet {
 
         private static final long serialVersionUID = 1L;
 
         @Override
         protected void doGet(HttpServletRequest req, HttpServletResponse resp)
                 throws ServletException, IOException {
-            // TODO Auto-generated method stub
             super.doGet(req, resp);
         }
 
         @Override
         protected void doHead(HttpServletRequest req, HttpServletResponse resp)
                 throws ServletException, IOException {
-            //resp.setContentLengthLong(-1);
-            //resp.flushBuffer();
         }
     }
 }



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