mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-17 23:05:03 -05:00
* make sure to gracefully ignore all cache errors
This commit is contained in:
parent
fa6909ddfe
commit
30f05c1f9c
@ -5,6 +5,8 @@ package net.sourceforge.filebot;
|
||||
import java.awt.Image;
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import javax.imageio.ImageIO;
|
||||
import javax.swing.Icon;
|
||||
@ -77,18 +79,26 @@ public final class ResourceManager {
|
||||
|
||||
|
||||
private static <T> T probeCache(String name, Class<T> type) {
|
||||
try {
|
||||
Element entry = cache.get(type.getName() + ":" + name);
|
||||
|
||||
if (entry != null) {
|
||||
return type.cast(entry.getObjectValue());
|
||||
}
|
||||
} catch (Exception e) {
|
||||
Logger.getLogger(ResourceManager.class.getName()).log(Level.WARNING, e.getMessage());
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
private static <T> T populateCache(String name, Class<? super T> type, T value) {
|
||||
try {
|
||||
cache.put(new Element(type.getName() + ":" + name, value));
|
||||
} catch (Exception e) {
|
||||
Logger.getLogger(ResourceManager.class.getName()).log(Level.WARNING, e.getMessage());
|
||||
}
|
||||
|
||||
return value;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user