rwaldhoff    01/08/17 12:16:02

  Modified:    httpclient/src/java/org/apache/commons/httpclient Tag:
                        rlwrefactoring RequestOutputStream.java
  Log:
  Removing deprecated HttpMethod-accepting constructor (method is completely ignored 
anyway)
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.2.2.2   +4 -19     
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/RequestOutputStream.java
  
  Index: RequestOutputStream.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/RequestOutputStream.java,v
  retrieving revision 1.2.2.1
  retrieving revision 1.2.2.2
  diff -u -r1.2.2.1 -r1.2.2.2
  --- RequestOutputStream.java  2001/08/10 22:27:12     1.2.2.1
  +++ RequestOutputStream.java  2001/08/17 19:16:02     1.2.2.2
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/RequestOutputStream.java,v
 1.2.2.1 2001/08/10 22:27:12 rwaldhoff Exp $
  - * $Revision: 1.2.2.1 $
  - * $Date: 2001/08/10 22:27:12 $
  + * $Header: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/RequestOutputStream.java,v
 1.2.2.2 2001/08/17 19:16:02 rwaldhoff Exp $
  + * $Revision: 1.2.2.2 $
  + * $Date: 2001/08/17 19:16:02 $
    *
    * ====================================================================
    *
  @@ -75,28 +75,13 @@
    * Socket output stream wrapper.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Remy Maucherat</a>
  - * @version $Revision: 1.2.2.1 $ $Date: 2001/08/10 22:27:12 $
  + * @version $Revision: 1.2.2.2 $ $Date: 2001/08/17 19:16:02 $
    */
   
   public class RequestOutputStream
       extends OutputStream {
   
  -    // removed HttpMethod reference, as it was never used. - rlw
  -
  -
       // ----------------------------------------------------------- Constructors
  -
  -
  -    /**
  -     * Construct an output stream wrapping the given stream.
  -     *
  -     * @param stream Wrapped input stream
  -     * @param method ignored
  -     * @deprecated Use {@link #RequestOutputStream(java.io.OutputStream)} instead.
  -     */
  -    public RequestOutputStream(OutputStream stream, HttpMethod method) {
  -        this(stream);
  -    }
   
       /**
        * Construct an output stream wrapping the given stream.
  
  
  

Reply via email to