- 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:
Otis Gospodnetic 2006-10-20 07:09:06 +00:00
parent d969f3ce2e
commit 59d5576068
1 changed files with 5 additions and 6 deletions

View File

@ -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;