git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150324 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2004-05-11 17:23:21 +00:00
parent c735ac4d00
commit 440be55927
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ public abstract class FilteredTermEnum extends TermEnum {
private Term currentTerm = null;
private TermEnum actualEnum = null;
public FilteredTermEnum(IndexReader reader, Term term) throws IOException {}
public FilteredTermEnum() throws IOException {}
/** Equality compare on the term */
protected abstract boolean termCompare(Term term);

View File

@ -35,7 +35,7 @@ public final class FuzzyTermEnum extends FilteredTermEnum {
int textlen;
public FuzzyTermEnum(IndexReader reader, Term term) throws IOException {
super(reader, term);
super();
searchTerm = term;
field = searchTerm.field();
text = searchTerm.text();

View File

@ -45,7 +45,7 @@ public class WildcardTermEnum extends FilteredTermEnum {
* <code>WILDCARD_CHAR</code> will cause an exception to be thrown.
*/
public WildcardTermEnum(IndexReader reader, Term term) throws IOException {
super(reader, term);
super();
searchTerm = term;
field = searchTerm.field();
text = searchTerm.text();