organize imports

This commit is contained in:
honfika@gmail.com
2015-07-05 21:28:17 +02:00
parent 1caf4e4856
commit 8928a3c9ee
25 changed files with 23 additions and 57 deletions

View File

@@ -67,7 +67,7 @@ public class Cache<K, V> implements Freed {
public static <K, V> Cache<K, V> getInstance(boolean weak, boolean memoryOnly, String name) {
Cache<K, V> instance = new Cache<>(weak, memoryOnly, name);
instances.add(new WeakReference<Cache>(instance));
instances.add(new WeakReference<>(instance));
return instance;
}