We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac6eddd commit 8dad0dfCopy full SHA for 8dad0df
src/main/java/io/github/nstdio/http/ext/LruMultimap.java
@@ -32,7 +32,7 @@ class LruMultimap<K, V> {
32
private int size;
33
34
LruMultimap(int maxSize, Consumer<V> evictListener) {
35
- m = new LinkedHashMap<>(maxSize + 1, 0.75f, true);
+ m = new LinkedHashMap<>(maxSize + 1, 1.0f, true);
36
this.maxSize = maxSize;
37
this.evictListener = evictListener;
38
}
0 commit comments