Fixing javadoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@594410 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2007-11-13 03:21:39 +00:00
parent 083f936d56
commit 34f2cb2ab0
1 changed files with 2 additions and 2 deletions

View File

@ -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) {