git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1384030 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2012-09-12 16:40:49 +00:00
parent 39f1521db3
commit 4070a08100
1 changed files with 2 additions and 2 deletions

View File

@ -296,7 +296,7 @@ public static void identityToString(StringBuffer buffer, Object object) {
* @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 static String toString(Object obj) {
* @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) {