mirror of https://github.com/apache/lucene.git
- Import stmt, @version + CVS Id tag.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149908 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7bda30b4c7
commit
0b346b0639
|
@ -54,14 +54,19 @@ package org.apache.lucene.analysis;
|
|||
* <http://www.apache.org/>.
|
||||
*/
|
||||
|
||||
/** Normalizes token text to lower case. */
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* Normalizes token text to lower case.
|
||||
*
|
||||
* @version $Id$
|
||||
*/
|
||||
public final class LowerCaseFilter extends TokenFilter {
|
||||
public LowerCaseFilter(TokenStream in) {
|
||||
super(in);
|
||||
}
|
||||
|
||||
public final Token next() throws java.io.IOException {
|
||||
public final Token next() throws IOException {
|
||||
Token t = input.next();
|
||||
|
||||
if (t == null)
|
||||
|
|
Loading…
Reference in New Issue