Remove unused method
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 5 Jan 2011 09:40:09 +0000 (09:40 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 5 Jan 2011 09:40:09 +0000 (09:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1055377 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/http11/OutputFilter.java
java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java
java/org/apache/coyote/http11/filters/GzipOutputFilter.java
java/org/apache/coyote/http11/filters/IdentityOutputFilter.java
java/org/apache/coyote/http11/filters/VoidOutputFilter.java

index 83ab390..7585859 100644 (file)
@@ -56,12 +56,6 @@ public interface OutputFilter extends OutputBuffer {
 
 
     /**
-     * Get the name of the encoding handled by this filter.
-     */
-    public ByteChunk getEncodingName();
-
-
-    /**
      * Set the next buffer in the filter pipeline.
      */
     public void setBuffer(OutputBuffer buffer);
index cede623..af71df8 100644 (file)
@@ -179,16 +179,4 @@ public class ChunkedOutputFilter implements OutputFilter {
     public void recycle() {
         // NOOP: Nothing to recycle
     }
-
-
-    /**
-     * Return the name of the associated encoding; Here, the value is 
-     * "identity".
-     */
-    @Override
-    public ByteChunk getEncodingName() {
-        return ENCODING;
-    }
-
-
 }
index 652cb21..0e95883 100644 (file)
@@ -163,16 +163,6 @@ public class GzipOutputFilter implements OutputFilter {
     }
 
 
-    /**
-     * Return the name of the associated encoding; Here, the value is 
-     * "identity".
-     */
-    @Override
-    public ByteChunk getEncodingName() {
-        return ENCODING;
-    }
-
-
     // ------------------------------------------- FakeOutputStream Inner Class
 
 
index fbddde7..5b8fc05 100644 (file)
@@ -180,16 +180,4 @@ public class IdentityOutputFilter implements OutputFilter {
         contentLength = -1;
         remaining = 0;
     }
-
-
-    /**
-     * Return the name of the associated encoding; Here, the value is 
-     * "identity".
-     */
-    @Override
-    public ByteChunk getEncodingName() {
-        return ENCODING;
-    }
-
-
 }
index 44e14f6..e2c7e44 100644 (file)
@@ -98,16 +98,6 @@ public class VoidOutputFilter implements OutputFilter {
 
 
     /**
-     * Return the name of the associated encoding; Here, the value is 
-     * "identity".
-     */
-    @Override
-    public ByteChunk getEncodingName() {
-        return ENCODING;
-    }
-
-
-    /**
      * End the current request. It is acceptable to write extra bytes using
      * buffer.doWrite during the execution of this method.
      *