Mailing List Archive

cvs commit: jakarta-lucene/src/java/org/apache/lucene/analysis LowerCaseTokenizer.java
otis 02/04/13 13:04:28

Modified: src/java/org/apache/lucene/analysis LowerCaseTokenizer.java
Log:
- Fixed a spelling error and re-formatted the Javadoc.

Revision Changes Path
1.4 +10 -9 jakarta-lucene/src/java/org/apache/lucene/analysis/LowerCaseTokenizer.java

Index: LowerCaseTokenizer.java
===================================================================
RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/analysis/LowerCaseTokenizer.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- LowerCaseTokenizer.java 14 Feb 2002 20:46:13 -0000 1.3
+++ LowerCaseTokenizer.java 13 Apr 2002 20:04:28 -0000 1.4
@@ -56,15 +56,16 @@

import java.io.Reader;

-/** LowerCaseTokenizer performs the function of LetterTokenizer
- and LowerCaseFilter together. It divides text at non-letters and converts
- them to lower case. While it is functionally equivalent to the combination
- of LetterTokenizer and LowerCaseFilter, there is a performance advantage
- to doing the two tasks at once, hence this (redundent) implementation.
-
- Note: this does a decent job for most European languages, but does a terrible
- job for some Asian languages, where words are not separated by spaces. */
-
+/**
+ * LowerCaseTokenizer performs the function of LetterTokenizer
+ * and LowerCaseFilter together. It divides text at non-letters and converts
+ * them to lower case. While it is functionally equivalent to the combination
+ * of LetterTokenizer and LowerCaseFilter, there is a performance advantage
+ * to doing the two tasks at once, hence this (redundant) implementation.
+ * <P>
+ * Note: this does a decent job for most European languages, but does a terrible
+ * job for some Asian languages, where words are not separated by spaces.
+ */
public final class LowerCaseTokenizer extends LetterTokenizer {
/** Construct a new LowerCaseTokenizer. */
public LowerCaseTokenizer(Reader in) {




--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>