reuse TermsEnum

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1528999 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shai Erera 2013-10-03 20:48:01 +00:00
parent 4ebdcbafb4
commit eda0a6b0cf
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ class BufferedDeletesStream { // TODO (DVU_RENAME) BufferedUpdatesStream
currentField = term.field();
Terms terms = fields.terms(currentField);
if (terms != null) {
termsEnum = terms.iterator(null);
termsEnum = terms.iterator(termsEnum);
} else {
termsEnum = null;
}