Applying Scott Bassin's javadoc fix from LANG-364

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@588151 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2007-10-25 06:25:02 +00:00
parent 1cc66e3095
commit ed7e9b4349

View File

@ -1042,7 +1042,7 @@ public StrTokenizer setEmptyTokenAsNull(boolean emptyAsNull) {
//-----------------------------------------------------------------------
/**
* 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 @@ public boolean isIgnoreEmptyTokens() {
/**
* 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