mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-24 21:15:48 +00:00
Fix LRUCache to be ordered by access time.
This commit is contained in:
@@ -8,6 +8,7 @@ public class LRUCache<K,V> extends LinkedHashMap<K,V> {
|
||||
private final int maxSize;
|
||||
|
||||
public LRUCache(int maxSize) {
|
||||
super(maxSize / 2, 0.75f, true);
|
||||
this.maxSize = maxSize;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user