Forgot to mark one more volatile member transient

This commit is contained in:
Trustin Lee 2009-02-13 11:53:05 +00:00
parent 06d5f5264e
commit 065218fd10

View File

@ -318,7 +318,7 @@ public final class ConcurrentIdentityWeakKeyHashMap<K, V> extends AbstractMap<K,
* The collected weak-key reference queue for this segment. This should
* be (re)initialized whenever table is assigned,
*/
volatile ReferenceQueue<Object> refQueue;
transient volatile ReferenceQueue<Object> refQueue;
Segment(int initialCapacity, float lf) {
loadFactor = lf;