Javadoc tweak

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@966173 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-07-21 10:51:50 +00:00
parent cd489ca802
commit f943e242c3
1 changed files with 1 additions and 1 deletions

View File

@ -692,7 +692,7 @@ public static Boolean toBooleanObject(String str, String trueString, String fals
* </pre>
*
* @param str the String to check
* @return the boolean value of the string, <code>false</code> if no match
* @return the boolean value of the string, <code>false</code> if no match or the String is null
*/
public static boolean toBoolean(String str) {
return toBooleanObject(str) == Boolean.TRUE;