mirror of https://github.com/apache/lucene.git
Fixed some javadoc links.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149684 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e00dabf7b1
commit
2a801b7e7d
|
@ -66,7 +66,7 @@ public class WhitespaceTokenizer extends CharTokenizer {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Collects only characters which do not satisfy
|
/** Collects only characters which do not satisfy
|
||||||
* {@link java.lang.Character#isWhitespace(char)}.*/
|
* {@link Character#isWhitespace(char)}.*/
|
||||||
protected boolean isTokenChar(char c) {
|
protected boolean isTokenChar(char c) {
|
||||||
return !Character.isWhitespace(c);
|
return !Character.isWhitespace(c);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue