From 73e66cfcdf29a27d92479ee46e0e297153e5a6d0 Mon Sep 17 00:00:00 2001
From: Lukas Eder null, an empty String ("").
*
* StringUtils.defaultString(null) = ""
* StringUtils.defaultString("") = ""
* StringUtils.defaultString("bat") = "bat"
*
- *
+ *
* @see String#valueOf(Object)
* @param str the String to check, may be null
* @return the passed in String, or the empty String if it was
@@ -147,7 +147,6 @@ public final class StringUtils {
* StringUtils.defaultString("bat", "NULL") = "bat"
*
*
- * @see ObjectUtils#toString(Object,String)
* @see String#valueOf(Object)
* @param str the String to check, may be null
* @param defaultStr the default String to return