Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 45140 invoked from network); 9 Apr 2011 02:41:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 Apr 2011 02:41:42 -0000 Received: (qmail 34779 invoked by uid 500); 9 Apr 2011 02:41:41 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 34722 invoked by uid 500); 9 Apr 2011 02:41:41 -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 34714 invoked by uid 99); 9 Apr 2011 02:41:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Apr 2011 02:41:41 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Apr 2011 02:41:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 18FCE23889FD; Sat, 9 Apr 2011 02:41:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1090514 - /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/CharSetUtils.java Date: Sat, 09 Apr 2011 02:41:20 -0000 To: commits@commons.apache.org From: bayard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110409024120.18FCE23889FD@eris.apache.org> Author: bayard Date: Sat Apr 9 02:41:19 2011 New Revision: 1090514 URL: http://svn.apache.org/viewvc?rev=1090514&view=rev Log: Fixing @see reference Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/CharSetUtils.java Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/CharSetUtils.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/CharSetUtils.java?rev=1090514&r1=1090513&r2=1090514&view=diff ============================================================================== --- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/CharSetUtils.java (original) +++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/CharSetUtils.java Sat Apr 9 02:41:19 2011 @@ -56,7 +56,7 @@ public class CharSetUtils { * CharSetUtils.squeeze("hello", "a-e") = "hello" * * - * @see CharSet#getInstance(java.lang.String) for set-syntax. + * @see CharSet#getInstance(java.lang.String...) for set-syntax. * @param str the string to squeeze, may be null * @param set the character set to use for manipulation, may be null * @return the modified String, {@code null} if null string input @@ -99,7 +99,7 @@ public class CharSetUtils { * CharSetUtils.count("hello", "a-e") = 1 * * - * @see CharSet#getInstance(java.lang.String) for set-syntax. + * @see CharSet#getInstance(java.lang.String...) for set-syntax. * @param str String to count characters in, may be null * @param set String[] set of characters to count, may be null * @return the character count, zero if null string input @@ -133,7 +133,7 @@ public class CharSetUtils { * CharSetUtils.keep("hello", "le") = "ell" * * - * @see CharSet#getInstance(java.lang.String) for set-syntax. + * @see CharSet#getInstance(java.lang.String...) for set-syntax. * @param str String to keep characters from, may be null * @param set String[] set of characters to keep, may be null * @return the modified String, {@code null} if null string input @@ -164,7 +164,7 @@ public class CharSetUtils { * CharSetUtils.delete("hello", "le") = "ho" * * - * @see CharSet#getInstance(java.lang.String) for set-syntax. + * @see CharSet#getInstance(java.lang.String...) for set-syntax. * @param str String to delete characters from, may be null * @param set String[] set of characters to delete, may be null * @return the modified String, {@code null} if null string input