fix what looks like an accidental debug commit or something

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1206440 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2011-11-26 14:13:11 +00:00
parent 9528a76608
commit cca388b7c7
1 changed files with 1 additions and 5 deletions

View File

@ -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;
}