added javadocs to inner class constructors

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@202055 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Caswell 2005-06-27 20:41:03 +00:00
parent 3eea891169
commit 53416f1e4f

View File

@ -1237,6 +1237,9 @@ public int isMatch(char[] text, int textLen, int pos) {
*/
static final class NoMatcher implements Matcher {
/**
* Constructs a new instance of <code>NoMatcher</code>.
*/
NoMatcher() {
super();
}
@ -1260,6 +1263,9 @@ public int isMatch(char[] text, int textLen, int pos) {
*/
static final class TrimMatcher implements Matcher {
/**
* Constructs a new instance of <code>TrimMatcher</code>.
*/
TrimMatcher() {
super();
}