mirror of https://github.com/apache/lucene.git
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:
parent
ec88b1578d
commit
70040e19ec
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue