mirror of https://github.com/apache/lucene.git
- 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:
parent
394da6b050
commit
233c5c329a
|
@ -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(")");
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue