added missing javadoc tags

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@202052 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Caswell 2005-06-27 20:34:13 +00:00
parent 80dd30415e
commit 3eea891169
1 changed files with 3 additions and 1 deletions

View File

@ -641,6 +641,8 @@ public class StrTokenizer implements ListIterator, Cloneable {
/**
* Read all the tokens.
*
* @return array containing the tokens.
*/
private String[] readTokens() {
int len = chars.length;
@ -1200,7 +1202,7 @@ public class StrTokenizer implements ListIterator, Cloneable {
/**
* Constructor that creates a matcher from a String.
*
* @param chars the characters to match, must not be null
* @param str the string to match, must not be null
*/
StringMatcher(String str) {
super();