Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 17201 invoked from network); 23 Oct 2007 05:32:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Oct 2007 05:32:22 -0000 Received: (qmail 52697 invoked by uid 500); 23 Oct 2007 05:32:08 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 52624 invoked by uid 500); 23 Oct 2007 05:32:07 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 52615 invoked by uid 99); 23 Oct 2007 05:32:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Oct 2007 22:32:07 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Oct 2007 05:32:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 709951A9832; Mon, 22 Oct 2007 22:31:59 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r587395 - /commons/proper/lang/trunk/src/java/org/apache/commons/lang/BooleanUtils.java Date: Tue, 23 Oct 2007 05:31:59 -0000 To: commits@commons.apache.org From: bayard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071023053159.709951A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bayard Date: Mon Oct 22 22:31:58 2007 New Revision: 587395 URL: http://svn.apache.org/viewvc?rev=587395&view=rev Log: Applying Corey Tripp's javadoc fix from LANG-361 Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/BooleanUtils.java Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/BooleanUtils.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang/BooleanUtils.java?rev=587395&r1=587394&r2=587395&view=diff ============================================================================== --- commons/proper/lang/trunk/src/java/org/apache/commons/lang/BooleanUtils.java (original) +++ commons/proper/lang/trunk/src/java/org/apache/commons/lang/BooleanUtils.java Mon Oct 22 22:31:58 2007 @@ -594,7 +594,10 @@ * @param nullString the String to match for null * (case sensitive), may be null * @return the Boolean value of the string, - * null if no match or null input + * null if either the String matches nullString + * or if null input and nullString is + * null + * @throws IllegalArgumentException if the String doesn't match */ public static Boolean toBooleanObject(String str, String trueString, String falseString, String nullString) { if (str == null) {