Author: mbenson
Date: Wed Sep 12 16:40:49 2012
New Revision: 1384030

URL: http://svn.apache.org/viewvc?rev=1384030&view=rev
Log:
javadoc

Modified:
    
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java

Modified: 
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java
URL: 
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java?rev=1384030&r1=1384029&r2=1384030&view=diff
==============================================================================
--- 
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java
 (original)
+++ 
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/ObjectUtils.java
 Wed Sep 12 16:40:49 2012
@@ -296,7 +296,7 @@ public class ObjectUtils {
      * @see StringUtils#defaultString(String)
      * @see String#valueOf(Object)
      * @param obj  the Object to {@code toString}, may be null
-     * @return the passed in Object's toString, or nullStr if {@code null} 
input
+     * @return the passed in Object's toString, or {@code ""} if {@code null} 
input
      * @since 2.0
      */
     public static String toString(Object obj) {
@@ -319,7 +319,7 @@ public class ObjectUtils {
      * @see String#valueOf(Object)
      * @param obj  the Object to {@code toString}, may be null
      * @param nullStr  the String to return if {@code null} input, may be null
-     * @return the passed in Object's toString, or nullStr if {@code null} 
input
+     * @return the passed in Object's toString, or {@code nullStr} if {@code 
null} input
      * @since 2.0
      */
     public static String toString(Object obj, String nullStr) {


Reply via email to