LUCENE-6957: don't make this method final

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1723331 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2016-01-06 14:17:12 +00:00
parent cc1ac528c1
commit 1c58fd4608
1 changed files with 1 additions and 1 deletions

View File

@ -1148,7 +1148,7 @@ public abstract class BaseDirectoryTestCase extends LuceneTestCase {
dir.close(); // close again
}
public final void testDoubleCloseOutput() throws Throwable {
public void testDoubleCloseOutput() throws Throwable {
Directory dir = getDirectory(createTempDir());
IndexOutput out = dir.createOutput("foobar", newIOContext(random()));
out.writeString("testing");