Index: java/org/apache/commons/httpclient/ConnectMethod.java =================================================================== RCS file: /home/cvspublic/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/ConnectMethod.java,v retrieving revision 1.19 diff -u -r1.19 ConnectMethod.java --- java/org/apache/commons/httpclient/ConnectMethod.java 13 Jul 2003 21:29:05 -0000 1.19 +++ java/org/apache/commons/httpclient/ConnectMethod.java 25 Jul 2003 14:24:43 -0000 @@ -123,24 +123,6 @@ /** * This method does nothing. CONNECT request is not supposed - * to contain Content-Length request header. - * - * @param state current state of http requests - * @param conn the connection to use for I/O - * - * @throws IOException when errors occur reading or writing to/from the - * connection - * @throws HttpException when a recoverable error occurs - * - * @see HttpMethodBase#addContentLengthRequestHeader(HttpState, HttpConnection) - */ - protected void addContentLengthRequestHeader(HttpState state, HttpConnection conn) - throws IOException, HttpException { - // Do nothing. Not applicable to CONNECT method - } - - /** - * This method does nothing. CONNECT request is not supposed * to contain Cookie request header. * * @param state current state of http requests Index: java/org/apache/commons/httpclient/HttpMethodBase.java =================================================================== RCS file: /home/cvspublic/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java,v retrieving revision 1.172 diff -u -r1.172 HttpMethodBase.java --- java/org/apache/commons/httpclient/HttpMethodBase.java 22 Jul 2003 18:17:48 -0000 1.172 +++ java/org/apache/commons/httpclient/HttpMethodBase.java 25 Jul 2003 14:24:45 -0000 @@ -94,17 +94,6 @@ * * *

- * When a method's request may contain a body, subclasses will typically want - * to override: - *

- *

- * - *

* When a method requires additional request headers, subclasses will typically * want to override: *