From 89d68fcd9605bc674761e86b6a3ff4dc0ad2353a Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Sat, 16 Aug 2003 10:36:00 +0000 Subject: [PATCH] uncapitaliseAllWords was not in 1.0.1, so it should not be in 2.0 as deprecated git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137606 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/lang/StringUtils.java | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/src/java/org/apache/commons/lang/StringUtils.java b/src/java/org/apache/commons/lang/StringUtils.java index d13f59f42..917e9896e 100644 --- a/src/java/org/apache/commons/lang/StringUtils.java +++ b/src/java/org/apache/commons/lang/StringUtils.java @@ -145,7 +145,7 @@ * @author Gary Gregory * @author Phil Steitz * @since 1.0 - * @version $Id: StringUtils.java,v 1.99 2003/08/14 02:20:48 ggregory Exp $ + * @version $Id: StringUtils.java,v 1.100 2003/08/16 10:36:00 scolebourne Exp $ */ public class StringUtils { // Performance testing notes (JDK 1.4, Jul03, scolebourne) @@ -3644,22 +3644,6 @@ public static String uncapitalizeAllWords(String str) { return buffer.toString(); } - /** - *

Uncapitalizes all the whitespace separated words in a String. - * Only the first letter of each word is changed.

- * - *

Whitespace is defined by {@link Character#isWhitespace(char)}. - * A null input String returns null.

- * - * @param str the String to uncapitalize, may be null - * @return uncapitalized String, null if null String input - * @deprecated Use the standardly named {@link #uncapitalizeAllWords(String)}. - * Method will be removed in Commons Lang 3.0. - */ - public static String uncapitaliseAllWords(String str) { - return uncapitalizeAllWords(str); - } - // Count matches //----------------------------------------------------------------------- /**