ggregory    2003/07/25 17:45:27

  Modified:    lang/src/java/org/apache/commons/lang ObjectUtils.java
  Log:
  Avoid Javadoc warning with Standard Doclet version 1.4.2.
  
  Revision  Changes    Path
  1.15      +3 -4      
jakarta-commons/lang/src/java/org/apache/commons/lang/ObjectUtils.java
  
  Index: ObjectUtils.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/ObjectUtils.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- ObjectUtils.java  25 Jul 2003 22:37:58 -0000      1.14
  +++ ObjectUtils.java  26 Jul 2003 00:45:27 -0000      1.15
  @@ -208,7 +208,7 @@
       //-----------------------------------------------------------------------
       /**
        * <p>Gets the <code>toString</code> of an <code>Object</code> returning
  -     * an empty string ("") if <code>null</code> input,</p>
  +     * an empty string ("") if <code>null</code> input.</p>
        * 
        * <pre>
        * ObjectUtils.toString(null)         = ""
  @@ -218,7 +218,6 @@
        * </pre>
        * 
        * @param obj  the Object to <code>toString</code>, may be null
  -     * @param nullStr  the String to return if <code>null</code> input, may be null
        * @return the passed in Object's toString, or nullStr if <code>null</code> 
input
        */
       public static String toString(Object obj) {
  @@ -227,7 +226,7 @@
   
       /**
        * <p>Gets the <code>toString</code> of an <code>Object</code> returning
  -     * an empty string ("") if <code>null</code> input,</p>
  +     * an empty string ("") if <code>null</code> input.</p>
        * 
        * <pre>
        * ObjectUtils.toString(null, null)           = null
  
  
  

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

Reply via email to