LUCENE-720: added a few missing close's

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@478241 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2006-11-22 17:07:00 +00:00
parent 19f90a38ee
commit a01711b245
2 changed files with 4 additions and 0 deletions

View File

@ -311,6 +311,7 @@ public class TestBackwardsCompatibility extends TestCase
break;
}
}
cfsReader.close();
assertTrue("could not locate the 'content' field number in the _2.cfs segment", contentFieldIndex != -1);
// Now verify file names:
@ -329,6 +330,7 @@ public class TestBackwardsCompatibility extends TestCase
if (!Arrays.equals(expected, actual)) {
fail("incorrect filenames in index: expected:\n " + asString(expected) + "\n actual:\n " + asString(actual));
}
dir.close();
rmDir(outputDir);
}

View File

@ -75,6 +75,7 @@ public class TestIndexFileDeleter extends TestCase
break;
}
}
cfsReader.close();
assertTrue("could not locate the 'content' field number in the _2.cfs segment", contentFieldIndex != -1);
String normSuffix = "s" + contentFieldIndex;
@ -132,6 +133,7 @@ public class TestIndexFileDeleter extends TestCase
writer.close();
String[] files2 = dir.list();
dir.close();
Arrays.sort(files);
Arrays.sort(files2);