mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 19:54:37 +00:00
imports & code formatting 1
This commit is contained in:
@@ -90,14 +90,14 @@ public class Cache<E> {
|
||||
}
|
||||
|
||||
public boolean contains(Object key) {
|
||||
if (storageType == STORAGE_FILES) {
|
||||
if (storageType == STORAGE_FILES) {
|
||||
return cacheFiles.containsKey(key);
|
||||
} else if (storageType == STORAGE_MEMORY) {
|
||||
return cacheMemory.containsKey(key);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
public void clear() {
|
||||
cacheMemory.clear();
|
||||
for (File f : cacheFiles.values()) {
|
||||
|
||||
Reference in New Issue
Block a user