remm        02/03/22 15:58:27

  Modified:    coyote/src/java/org/apache/coyote/tomcat4
                        CoyoteConnector.java
  Log:
  - Remove unused 'allowChunking' flag. The HTTP/1.1 processor has a different
    mechanism to handle non-compliant clients, but it is not exposed at the moment.
  
  Revision  Changes    Path
  1.5       +4 -42     
jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteConnector.java
  
  Index: CoyoteConnector.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteConnector.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CoyoteConnector.java      14 Mar 2002 20:42:59 -0000      1.4
  +++ CoyoteConnector.java      22 Mar 2002 23:58:27 -0000      1.5
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteConnector.java,v
 1.4 2002/03/14 20:42:59 remm Exp $
  - * $Revision: 1.4 $
  - * $Date: 2002/03/14 20:42:59 $
  + * $Header: 
/home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/CoyoteConnector.java,v
 1.5 2002/03/22 23:58:27 remm Exp $
  + * $Revision: 1.5 $
  + * $Date: 2002/03/22 23:58:27 $
    *
    * ====================================================================
    *
  @@ -103,7 +103,7 @@
    *
    * @author Craig R. McClanahan
    * @author Remy Maucherat
  - * @version $Revision: 1.4 $ $Date: 2002/03/14 20:42:59 $
  + * @version $Revision: 1.5 $ $Date: 2002/03/22 23:58:27 $
    */
   
   
  @@ -308,12 +308,6 @@
   
   
       /**
  -     * Is chunking allowed ?
  -     */
  -    private boolean allowChunking = true;
  -
  -
  -    /**
        * Use TCP no delay ?
        */
       private boolean tcpNoDelay = true;
  @@ -397,38 +391,6 @@
       public void setAcceptCount(int count) {
   
           this.acceptCount = count;
  -
  -    }
  -
  -
  -    /**
  -     * Get the allow chunking flag.
  -     */
  -    public boolean isChunkingAllowed() {
  -
  -        return (allowChunking);
  -
  -    }
  -
  -
  -    /**
  -     * Get the allow chunking flag.
  -     */
  -    public boolean getAllowChunking() {
  -
  -        return isChunkingAllowed();
  -
  -    }
  -
  -
  -    /**
  -     * Set the allow chunking flag.
  -     *
  -     * @param allowChunking Allow chunking flag
  -     */
  -    public void setAllowChunking(boolean allowChunking) {
  -
  -        this.allowChunking = allowChunking;
   
       }
   
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to