diff --git a/lucene/src/java/org/apache/lucene/index/codecs/sep/IntStreamFactory.java b/lucene/src/java/org/apache/lucene/index/codecs/sep/IntStreamFactory.java index 2d110591dbb..e1cc1f51fa1 100644 --- a/lucene/src/java/org/apache/lucene/index/codecs/sep/IntStreamFactory.java +++ b/lucene/src/java/org/apache/lucene/index/codecs/sep/IntStreamFactory.java @@ -24,10 +24,6 @@ import java.io.IOException; /** @lucene.experimental */ public abstract class IntStreamFactory { - public IntIndexInput openInput(Directory dir, String fileName, IOContext context) throws IOException { - return openInput(dir, fileName, context); - } - -// public abstract IntIndexInput openInput(Directory dir, String fileName, IOContext context) throws IOException; + public abstract IntIndexInput openInput(Directory dir, String fileName, IOContext context) throws IOException; public abstract IntIndexOutput createOutput(Directory dir, String fileName, IOContext context) throws IOException; }