Details
Description
There is an error in the JavaDoc description of the second version of
StringUtils.defaultString.
The current version is:
defaultString(String str, String defaultStr)
Returns either the passed in String, or if the String is null, an empty String
("").
The correct version should be, e.g.:
Returns either the passed in String, or if the String is null, the value of
<code>defaultStr</code>.