LUCENE-1707: refCount doesn't need to be volatile

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@788493 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2009-06-25 19:54:49 +00:00
parent ec88b1578d
commit 70040e19ec
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ public abstract class IndexReader implements Cloneable {
private boolean closed;
protected boolean hasChanges;
private volatile int refCount;
private int refCount;
private boolean disableFakeNorms = false;