Remove some unused code
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 22 Sep 2011 19:37:57 +0000 (19:37 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 22 Sep 2011 19:37:57 +0000 (19:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1174341 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/ActionCode.java
java/org/apache/coyote/http11/AbstractHttp11Processor.java

index 9e23899..f857945 100644 (file)
@@ -38,7 +38,6 @@ public enum ActionCode {
      */
     CLIENT_FLUSH,
 
-    CUSTOM,
     RESET,
 
     /**
index 45fda6e..1b8dd96 100644 (file)
@@ -774,10 +774,6 @@ public abstract class AbstractHttp11Processor<S> extends AbstractProcessor<S> {
 
             getOutputBuffer().reset();
 
-        } else if (actionCode == ActionCode.CUSTOM) {
-            // Do nothing
-            // TODO Remove this action
-
         } else if (actionCode == ActionCode.REQ_SET_BODY_REPLAY) {
             ByteChunk body = (ByteChunk) param;