logger classes fixed, added new events (swf, abc, method body parsed)

This commit is contained in:
honfika@gmail.com
2014-09-01 13:33:35 +02:00
parent c27eeafce4
commit 8325d07b24
26 changed files with 186 additions and 120 deletions

View File

@@ -133,7 +133,7 @@ public class Cache<E> {
E item = (E) ois.readObject();
return item;
} catch (IOException | ClassNotFoundException ex) {
Logger.getLogger(Helper.class.getName()).log(Level.SEVERE, null, ex);
Logger.getLogger(Cache.class.getName()).log(Level.SEVERE, null, ex);
}
return null;
} else if (storageType == STORAGE_MEMORY) {
@@ -151,8 +151,7 @@ public class Cache<E> {
try {
temp = File.createTempFile("ffdec_cache", ".tmp");
} catch (IOException ex) {
Logger.getLogger(Cache.class
.getName()).log(Level.SEVERE, null, ex);
Logger.getLogger(Cache.class.getName()).log(Level.SEVERE, null, ex);
return;
}