mirror of https://github.com/apache/lucene.git
Patch a bug where the .tii file was not closed.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@156549 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
90ff23fb92
commit
4ddfbcffc6
|
@ -66,6 +66,8 @@ final class TermInfosReader {
|
|||
final void close() throws IOException {
|
||||
if (origEnum != null)
|
||||
origEnum.close();
|
||||
if (indexEnum != null)
|
||||
indexEnum.close();
|
||||
}
|
||||
|
||||
/** Returns the number of term/value pairs in the set. */
|
||||
|
|
Loading…
Reference in New Issue