Author: markt
Date: Thu Aug 30 09:24:36 2012
New Revision: 1378869

URL: http://svn.apache.org/viewvc?rev=1378869&view=rev
Log:
No need to return a boolean here

Modified:
    tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java

Modified: 
tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java?rev=1378869&r1=1378868&r2=1378869&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java 
(original)
+++ tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java 
Thu Aug 30 09:24:36 2012
@@ -348,16 +348,6 @@ public class ChunkedInputFilter implemen
 
     /**
      * Parse CRLF at end of chunk.
-     * @deprecated  Use {@link #parseCRLF(boolean)}
-     */
-    @Deprecated
-    protected boolean parseCRLF() throws IOException {
-        parseCRLF(false);
-        return true;
-    }
-
-    /**
-     * Parse CRLF at end of chunk.
      *
      * @param   tolerant    Should tolerant parsing (LF and CRLF) be used? This
      *                      is recommended (RFC2616, section 19.3) for message



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

Reply via email to