- Removed unused variables.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149921 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2003-01-13 01:51:18 +00:00
parent 394da6b050
commit 233c5c329a
2 changed files with 0 additions and 2 deletions

View File

@ -151,7 +151,6 @@ public class BooleanQuery extends Query {
Query subQuery = c.query;
if (subQuery instanceof BooleanQuery) { // wrap sub-bools in parens
BooleanQuery bq = (BooleanQuery)subQuery;
buffer.append("(");
buffer.append(c.query.toString(field));
buffer.append(")");

View File

@ -76,7 +76,6 @@ import org.apache.lucene.index.TermEnum;
public class MultiTermQuery extends Query {
private Term term;
private FilteredTermEnum enum;
private IndexReader reader;
private BooleanQuery query;
/** Enable or disable lucene style toString(field) format */