mirror of https://github.com/apache/lucene.git
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:
parent
cc1ac528c1
commit
1c58fd4608
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue