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 28e418e commit 654f7a2Copy full SHA for 654f7a2
src/net/tsz/afinal/bitmap/core/SoftMemoryCacheImpl.java
@@ -25,7 +25,8 @@ public class SoftMemoryCacheImpl implements IMemoryCache {
25
private final HashMap<String, SoftReference<Bitmap>> mMemoryCache;
26
27
public SoftMemoryCacheImpl(int size) {
28
- mMemoryCache = new HashMap<String, SoftReference<Bitmap>>(size);
+
29
+ mMemoryCache = new HashMap<String, SoftReference<Bitmap>>();
30
}
31
32
@Override
0 commit comments