remove an unused variable

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150409 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-08-08 14:08:18 +00:00
parent dc74bab798
commit 043baabb62
1 changed files with 1 additions and 4 deletions

View File

@ -44,9 +44,6 @@ class CompoundFileReader extends Directory {
private Directory directory; private Directory directory;
private String fileName; private String fileName;
// Reference count
private boolean open;
private InputStream stream; private InputStream stream;
private HashMap entries = new HashMap(); private HashMap entries = new HashMap();
@ -226,7 +223,7 @@ class CompoundFileReader extends Directory {
*/ */
protected void seekInternal(long pos) {} protected void seekInternal(long pos) {}
/** Closes the stream to futher operations. */ /** Closes the stream to further operations. */
public void close() {} public void close() {}
} }