You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2007/10/25 08:25:03 UTC

svn commit: r588151 - /commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/StrTokenizer.java

Author: bayard
Date: Wed Oct 24 23:25:02 2007
New Revision: 588151

URL: http://svn.apache.org/viewvc?rev=588151&view=rev
Log:
Applying Scott Bassin's javadoc fix from LANG-364

Modified:
    commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/StrTokenizer.java

Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/StrTokenizer.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/StrTokenizer.java?rev=588151&r1=588150&r2=588151&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/StrTokenizer.java (original)
+++ commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/StrTokenizer.java Wed Oct 24 23:25:02 2007
@@ -1042,7 +1042,7 @@
     //-----------------------------------------------------------------------
     /**
      * Gets whether the tokenizer currently ignores empty tokens.
-     * The default for this property is false.
+     * The default for this property is true.
      *
      * @return true if empty tokens are not returned
      */
@@ -1052,7 +1052,7 @@
 
     /**
      * Sets whether the tokenizer should ignore and not return empty tokens.
-     * The default for this property is false.
+     * The default for this property is true.
      *
      * @param ignoreEmptyTokens  whether empty tokens are not returned
      * @return this, to enable chaining