From 34f2cb2ab001324158f0b0b7049c37e39b2769aa Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Tue, 13 Nov 2007 03:21:39 +0000 Subject: [PATCH] Fixing javadoc git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@594410 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/lang/StringUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/lang/StringUtils.java b/src/java/org/apache/commons/lang/StringUtils.java index 4ba8102ef..cbab84e35 100644 --- a/src/java/org/apache/commons/lang/StringUtils.java +++ b/src/java/org/apache/commons/lang/StringUtils.java @@ -5126,8 +5126,8 @@ public class StringUtils { * * @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) {