mirror of https://github.com/apache/lucene.git
- Removed tabs and extra spaces
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@466016 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d969f3ce2e
commit
59d5576068
|
@ -72,13 +72,12 @@ public class SpanOrQuery extends SpanQuery {
|
|||
}
|
||||
|
||||
public void extractTerms(Set terms) {
|
||||
Iterator i = clauses.iterator();
|
||||
while (i.hasNext()) {
|
||||
SpanQuery clause = (SpanQuery)i.next();
|
||||
clause.extractTerms(terms);
|
||||
}
|
||||
Iterator i = clauses.iterator();
|
||||
while (i.hasNext()) {
|
||||
SpanQuery clause = (SpanQuery)i.next();
|
||||
clause.extractTerms(terms);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public Query rewrite(IndexReader reader) throws IOException {
|
||||
SpanOrQuery clone = null;
|
||||
|
|
Loading…
Reference in New Issue