remove unused private fields

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@825131 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2009-10-14 13:42:29 +00:00
parent f7ab67bb23
commit 83ab2542db
2 changed files with 0 additions and 3 deletions

View File

@ -561,7 +561,6 @@ class DirectoryReader extends IndexReader implements Cloneable {
return false;
}
private byte[] ones;
public synchronized byte[] norms(String field) throws IOException {
ensureOpen();
byte[] bytes = (byte[])normsCache.get(field);

View File

@ -121,8 +121,6 @@ public abstract class IndexReader implements Cloneable {
static int DEFAULT_TERMS_INDEX_DIVISOR = 1;
private boolean disableFakeNorms = false;
/** Expert: returns the current refCount for this reader */
public synchronized int getRefCount() {
return refCount;