I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 23ca6b4f authored by zzz's avatar zzz
Browse files

* SimpleByteCache: Concurrent fix

parent 9e355962
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ import java.util.concurrent.LinkedBlockingQueue;
*/
public final class SimpleByteCache {
private static final Map<Integer, SimpleByteCache> _caches = new ConcurrentHashMap(8);
private static final ConcurrentHashMap<Integer, SimpleByteCache> _caches = new ConcurrentHashMap(8);
private static final int DEFAULT_SIZE = 64;
......@@ -45,7 +45,9 @@ public final class SimpleByteCache {
SimpleByteCache cache = _caches.get(sz);
if (cache == null) {
cache = new SimpleByteCache(cacheSize, size);
_caches.put(sz, cache);
SimpleByteCache old = _caches.putIfAbsent(sz, cache);
if (old != null)
cache = old;
}
cache.resize(cacheSize);
return cache;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment