Author: markt
Date: Wed Jan  5 09:40:09 2011
New Revision: 1055377

URL: http://svn.apache.org/viewvc?rev=1055377&view=rev
Log:
Remove unused method

Modified:
    tomcat/trunk/java/org/apache/coyote/http11/OutputFilter.java
    tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java
    tomcat/trunk/java/org/apache/coyote/http11/filters/GzipOutputFilter.java
    tomcat/trunk/java/org/apache/coyote/http11/filters/IdentityOutputFilter.java
    tomcat/trunk/java/org/apache/coyote/http11/filters/VoidOutputFilter.java

Modified: tomcat/trunk/java/org/apache/coyote/http11/OutputFilter.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/OutputFilter.java?rev=1055377&r1=1055376&r2=1055377&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http11/OutputFilter.java (original)
+++ tomcat/trunk/java/org/apache/coyote/http11/OutputFilter.java Wed Jan  5 
09:40:09 2011
@@ -56,12 +56,6 @@ public interface OutputFilter extends Ou
 
 
     /**
-     * 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);

Modified: 
tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java?rev=1055377&r1=1055376&r2=1055377&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java 
(original)
+++ tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java 
Wed Jan  5 09:40:09 2011
@@ -179,16 +179,4 @@ public class ChunkedOutputFilter impleme
     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;
-    }
-
-
 }

Modified: 
tomcat/trunk/java/org/apache/coyote/http11/filters/GzipOutputFilter.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/filters/GzipOutputFilter.java?rev=1055377&r1=1055376&r2=1055377&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http11/filters/GzipOutputFilter.java 
(original)
+++ tomcat/trunk/java/org/apache/coyote/http11/filters/GzipOutputFilter.java 
Wed Jan  5 09:40:09 2011
@@ -163,16 +163,6 @@ public class GzipOutputFilter implements
     }
 
 
-    /**
-     * Return the name of the associated encoding; Here, the value is 
-     * "identity".
-     */
-    @Override
-    public ByteChunk getEncodingName() {
-        return ENCODING;
-    }
-
-
     // ------------------------------------------- FakeOutputStream Inner Class
 
 

Modified: 
tomcat/trunk/java/org/apache/coyote/http11/filters/IdentityOutputFilter.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/filters/IdentityOutputFilter.java?rev=1055377&r1=1055376&r2=1055377&view=diff
==============================================================================
--- 
tomcat/trunk/java/org/apache/coyote/http11/filters/IdentityOutputFilter.java 
(original)
+++ 
tomcat/trunk/java/org/apache/coyote/http11/filters/IdentityOutputFilter.java 
Wed Jan  5 09:40:09 2011
@@ -180,16 +180,4 @@ public class IdentityOutputFilter implem
         contentLength = -1;
         remaining = 0;
     }
-
-
-    /**
-     * Return the name of the associated encoding; Here, the value is 
-     * "identity".
-     */
-    @Override
-    public ByteChunk getEncodingName() {
-        return ENCODING;
-    }
-
-
 }

Modified: 
tomcat/trunk/java/org/apache/coyote/http11/filters/VoidOutputFilter.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/filters/VoidOutputFilter.java?rev=1055377&r1=1055376&r2=1055377&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http11/filters/VoidOutputFilter.java 
(original)
+++ tomcat/trunk/java/org/apache/coyote/http11/filters/VoidOutputFilter.java 
Wed Jan  5 09:40:09 2011
@@ -98,16 +98,6 @@ public class VoidOutputFilter implements
 
 
     /**
-     * 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.
      * 



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

Reply via email to