You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by mb...@apache.org on 2003/12/14 23:39:04 UTC

cvs commit: jakarta-commons/httpclient/src/java/org/apache/commons/httpclient HttpMethodBase.java

mbecke      2003/12/14 14:39:04

  Modified:    httpclient/src/java/org/apache/commons/httpclient/util
                        HttpURLConnection.java
               httpclient/src/java/org/apache/commons/httpclient/methods
                        PostMethod.java EntityEnclosingMethod.java
               httpclient/src/java/org/apache/commons/httpclient/auth
                        HttpAuthRealm.java
               httpclient/src/java/org/apache/commons/httpclient
                        HttpMethodBase.java
  Log:
  Fixes for unmatched javadoc <tt> and <code> tags.
  
  PR: 25004
  Submitted by: Michael Becke
  
  Revision  Changes    Path
  1.13      +5 -5      jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/util/HttpURLConnection.java
  
  Index: HttpURLConnection.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/util/HttpURLConnection.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- HttpURLConnection.java	22 Apr 2003 18:11:01 -0000	1.12
  +++ HttpURLConnection.java	14 Dec 2003 22:39:03 -0000	1.13
  @@ -79,7 +79,7 @@
    * Provides a <code>HttpURLConnection</code> wrapper around HttpClient's
    * <code>HttpMethod</code>. This allows existing code to easily switch to
    * HttpClieht without breaking existing interfaces using the JDK
  - * <code>HttpURLConnection<code>.
  + * <code>HttpURLConnection</code>.
    *
    * Note 1: The current implementations wraps only a connected
    * <code>HttpMethod</code>, ie a method that has alreayd been used to connect
  
  
  
  1.50      +5 -5      jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/PostMethod.java
  
  Index: PostMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/PostMethod.java,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- PostMethod.java	12 Sep 2003 07:34:16 -0000	1.49
  +++ PostMethod.java	14 Dec 2003 22:39:03 -0000	1.50
  @@ -199,7 +199,7 @@
        * </p>   
        * 
        * @return request body as an array of bytes. If the request content 
  -     *          has not been set, returns <tt>null</null>.
  +     *          has not been set, returns <tt>null</tt>.
        * 
        * @since 2.0beta1
        */
  
  
  
  1.27      +5 -5      jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/EntityEnclosingMethod.java
  
  Index: EntityEnclosingMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods/EntityEnclosingMethod.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- EntityEnclosingMethod.java	9 Aug 2003 19:37:58 -0000	1.26
  +++ EntityEnclosingMethod.java	14 Dec 2003 22:39:04 -0000	1.27
  @@ -196,7 +196,7 @@
        * alternative request content input methods.</p>
        * 
        * @return request body as an array of bytes. If the request content 
  -     *          has not been set, returns <tt>null</null>.
  +     *          has not been set, returns <tt>null</tt>.
        * 
        * @since 2.0beta1
        */
  
  
  
  1.4       +5 -5      jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/auth/HttpAuthRealm.java
  
  Index: HttpAuthRealm.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/auth/HttpAuthRealm.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- HttpAuthRealm.java	26 May 2003 21:51:37 -0000	1.3
  +++ HttpAuthRealm.java	14 Dec 2003 22:39:04 -0000	1.4
  @@ -80,10 +80,10 @@
        * <tt>realm</tt>.
        * 
        * @param domain the domain the credentials apply to. May be set
  -     *   to <tt>null</null> if credenticals are applicable to
  +     *   to <tt>null</tt> if credenticals are applicable to
        *   any domain. 
        * @param realm the realm the credentials apply to. May be set 
  -     *   to <tt>null</null> if credenticals are applicable to
  +     *   to <tt>null</tt> if credenticals are applicable to
        *   any realm. 
        *   
        */
  
  
  
  1.195     +7 -7      jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java
  
  Index: HttpMethodBase.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java,v
  retrieving revision 1.194
  retrieving revision 1.195
  diff -u -r1.194 -r1.195
  --- HttpMethodBase.java	11 Dec 2003 22:54:18 -0000	1.194
  +++ HttpMethodBase.java	14 Dec 2003 22:39:04 -0000	1.195
  @@ -311,7 +311,7 @@
        * (status code 302, etc.)
        * 
        * @param followRedirects <tt>true</tt> if the method will automatically follow redirects,
  -     * <tt>false</ff> otherwise.
  +     * <tt>false</tt> otherwise.
        */
       public void setFollowRedirects(boolean followRedirects) {
           this.followRedirects = followRedirects;
  @@ -322,7 +322,7 @@
        * (status code 302, etc.), <tt>false</tt> otherwise.
        * 
        * @return <tt>true</tt> if the method will automatically follow HTTP redirects, 
  -     * <tt>false</ff> otherwise.
  +     * <tt>false</tt> otherwise.
        */
       public boolean getFollowRedirects() {
           return this.followRedirects;
  @@ -1075,7 +1075,7 @@
       // ---------------------------------------------------------------- Queries
   
       /**
  -     * Returns <tt>true</tt> the method is ready to execute, <tt>false</ff> otherwise.
  +     * Returns <tt>true</tt> the method is ready to execute, <tt>false</tt> otherwise.
        * 
        * @return This implementation always returns <tt>true</tt>.
        */
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org