Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 10789 invoked from network); 13 Nov 2007 03:22:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Nov 2007 03:22:10 -0000 Received: (qmail 34315 invoked by uid 500); 13 Nov 2007 03:21:52 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 34256 invoked by uid 500); 13 Nov 2007 03:21:52 -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 33996 invoked by uid 99); 13 Nov 2007 03:21:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Nov 2007 19:21:51 -0800 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, 13 Nov 2007 03:22:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EE3481A9832; Mon, 12 Nov 2007 19:21:40 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r594410 - /commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java Date: Tue, 13 Nov 2007 03:21:40 -0000 To: commits@commons.apache.org From: bayard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071113032140.EE3481A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bayard Date: Mon Nov 12 19:21:39 2007 New Revision: 594410 URL: http://svn.apache.org/viewvc?rev=594410&view=rev Log: Fixing javadoc Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java?rev=594410&r1=594409&r2=594410&view=diff ============================================================================== --- commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java (original) +++ commons/proper/lang/trunk/src/java/org/apache/commons/lang/StringUtils.java Mon Nov 12 19:21:39 2007 @@ -5126,8 +5126,8 @@ * * @param strs array of String objects, entries may be null * @return the initial sequence of characters that are common to all Strings - * in the array; empty String if the array is null or the strings in the - * array are all null; -1 if all Strings are equal + * in the array; empty String if the array is null, the elements are all null + * or if there is no common prefix. */ public static String getCommonPrefix(String[] strs) { if (strs == null || strs.length == 0) {