yoavs       2004/05/26 09:26:10

  Modified:    catalina/src/share/org/apache/catalina/util RequestUtil.java
  Log:
  Minor JavaDoc fixes (Bugzilla 28335)
  
  Revision  Changes    Path
  1.8       +5 -6      
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/util/RequestUtil.java
  
  Index: RequestUtil.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/util/RequestUtil.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- RequestUtil.java  27 Feb 2004 14:58:50 -0000      1.7
  +++ RequestUtil.java  26 May 2004 16:26:10 -0000      1.8
  @@ -276,7 +276,6 @@
        *
        * @param map Map that accumulates the resulting parameters
        * @param data Input string containing request parameters
  -     * @param urlParameters true if we're parsing parameters on the URL
        *
        * @exception IllegalArgumentException if the data is malformed
        */
  @@ -416,12 +415,12 @@
   
   
       /**
  -     * Put name value pair in map.
  -     *
  -     * @param b the character value byte
  -     *
        * Put name and value pair in map.  When name already exist, add value
        * to array of values.
  +     *
  +     * @param map The map to populate
  +     * @param name The parameter name
  +     * @param value The parameter value
        */
       private static void putMapEntry( Map map, String name, String value) {
           String[] newValues = null;
  
  
  

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

Reply via email to