mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-10 08:54:58 +00:00
Removed not used open from browser cache feature.
This commit is contained in:
@@ -179,8 +179,6 @@ public class Main {
|
||||
|
||||
private static LoadFromMemoryFrame loadFromMemoryFrame;
|
||||
|
||||
private static LoadFromCacheFrame loadFromCacheFrame;
|
||||
|
||||
private static final Logger logger = Logger.getLogger(Main.class.getName());
|
||||
|
||||
public static DebugLogDialog debugDialog;
|
||||
@@ -754,13 +752,6 @@ public class Main {
|
||||
return null;
|
||||
}
|
||||
|
||||
public static void loadFromCache() {
|
||||
if (loadFromCacheFrame == null) {
|
||||
loadFromCacheFrame = new LoadFromCacheFrame();
|
||||
}
|
||||
loadFromCacheFrame.setVisible(true);
|
||||
}
|
||||
|
||||
public static void loadFromMemory() {
|
||||
if (loadFromMemoryFrame == null) {
|
||||
loadFromMemoryFrame = new LoadFromMemoryFrame(mainFrame);
|
||||
@@ -1710,11 +1701,6 @@ public class Main {
|
||||
loadFromMemoryFrame.dispose();
|
||||
loadFromMemoryFrame = null;
|
||||
}
|
||||
if (loadFromCacheFrame != null) {
|
||||
loadFromCacheFrame.setVisible(false);
|
||||
loadFromCacheFrame.dispose();
|
||||
loadFromCacheFrame = null;
|
||||
}
|
||||
if (mainFrame != null) {
|
||||
mainFrame.setVisible(false);
|
||||
mainFrame.getPanel().closeAll(false, false);
|
||||
|
||||
Reference in New Issue
Block a user