Drop unused fields
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 16 Apr 2009 17:28:48 +0000 (17:28 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 16 Apr 2009 17:28:48 +0000 (17:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@765695 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/http11/Http11NioProcessor.java
java/org/apache/coyote/http11/Http11NioProtocol.java

index 6b188df..93f5d2c 100644 (file)
@@ -84,7 +84,7 @@ public class Http11NioProcessor implements ActionHook {
     // ----------------------------------------------------------- Constructors
 
 
-    public Http11NioProcessor(int rxBufSize, int txBufSize, int maxHttpHeaderSize, NioEndpoint endpoint) {
+    public Http11NioProcessor(int maxHttpHeaderSize, NioEndpoint endpoint) {
 
         this.endpoint = endpoint;
 
index 8a91c1e..8afb4c6 100644 (file)
@@ -794,8 +794,6 @@ public class Http11NioProtocol implements ProtocolHandler, MBeanRegistration
 
         public Http11NioProcessor createProcessor() {
             Http11NioProcessor processor = new Http11NioProcessor(
-              0,
-              0, 
               proto.maxHttpHeaderSize,
               proto.ep);
             processor.setAdapter(proto.adapter);