Enforce strict eviction semantics

This commit is contained in:
Jason Tedor 2015-10-08 12:42:36 -04:00
parent 8d33be83b7
commit 9ca032ae9d
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ public class Cache<K, V> {
final K key;
final V value;
long writeTime;
long accessTime;
volatile long accessTime;
Entry<K, V> before;
Entry<K, V> after;
State state = State.NEW;