Applying Corey Tripp's javadoc fix from LANG-361

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@587395 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2007-10-23 05:31:58 +00:00
parent bb7110e108
commit 1cc66e3095
1 changed files with 4 additions and 1 deletions

View File

@ -594,7 +594,10 @@ public static Boolean toBooleanObject(String str) {
* @param nullString the String to match for <code>null</code>
* (case sensitive), may be <code>null</code>
* @return the Boolean value of the string,
* <code>null</code> if no match or <code>null</code> input
* <code>null</code> if either the String matches <code>nullString</code>
* or if <code>null</code> input and <code>nullString</code> is
* <code>null</code>
* @throws IllegalArgumentException if the String doesn't match
*/
public static Boolean toBooleanObject(String str, String trueString, String falseString, String nullString) {
if (str == null) {