You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by je...@apache.org on 2002/12/18 03:17:06 UTC

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

jericho     2002/12/17 18:17:05

  Modified:    httpclient/src/java/org/apache/commons/httpclient URI.java
  Log:
  - Fix a construction missing to set an argument.
  - Fix a javadoc message.
  
  Reported and patched by "Sylwester Lachiewicz" <matrix at plusnet.pl>
  Thank you...
  
  Revision  Changes    Path
  1.16      +7 -5      jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/URI.java
  
  Index: URI.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/URI.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- URI.java	17 Dec 2002 01:36:41 -0000	1.15
  +++ URI.java	18 Dec 2002 02:17:05 -0000	1.16
  @@ -228,6 +228,8 @@
           _opaque = encode(scheme_specific_part, allowed_opaque_part);
           // Set flag
           _is_opaque_part = true;
  +        _fragment = fragment.toCharArray(); 
  +
           setUriReference();
       }
   
  @@ -3031,7 +3033,7 @@
       /**
        * Set the fragment.
        *
  -     * @param the fragment string.
  +     * @param fragment the fragment string.
        * @exception URIException
        * Or unsupported character encoding
        * @throws NullPointerException null fragment
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>