scolebourne    2003/08/16 03:36:00

  Modified:    lang/src/java/org/apache/commons/lang StringUtils.java
  Log:
  uncapitaliseAllWords was not in 1.0.1, so it should not be in 2.0 as deprecated
  
  Revision  Changes    Path
  1.100     +1 -17     
jakarta-commons/lang/src/java/org/apache/commons/lang/StringUtils.java
  
  Index: StringUtils.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/StringUtils.java,v
  retrieving revision 1.99
  retrieving revision 1.100
  diff -u -r1.99 -r1.100
  --- StringUtils.java  14 Aug 2003 02:20:48 -0000      1.99
  +++ StringUtils.java  16 Aug 2003 10:36:00 -0000      1.100
  @@ -3644,22 +3644,6 @@
           return buffer.toString();
       }
   
  -    /**
  -     * <p>Uncapitalizes all the whitespace separated words in a String.
  -     * Only the first letter of each word is changed.</p>
  -     *
  -     * <p>Whitespace is defined by [EMAIL PROTECTED] Character#isWhitespace(char)}.
  -     * A <code>null</code> input String returns <code>null</code>.</p>
  -     *
  -     * @param str  the String to uncapitalize, may be null
  -     * @return uncapitalized String, <code>null</code> if null String input
  -     * @deprecated Use the standardly named [EMAIL PROTECTED] 
#uncapitalizeAllWords(String)}.
  -     *             Method will be removed in Commons Lang 3.0.
  -     */
  -    public static String uncapitaliseAllWords(String str) {
  -        return uncapitalizeAllWords(str);
  -    }
  -
       // Count matches
       //-----------------------------------------------------------------------
       /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to