From b1a84a394094e9f86b2d96c8a1ad01bbab43973b Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Fri, 17 Jul 2015 09:23:16 +0200 Subject: [PATCH] debug things removed --- .../com/jpexs/decompiler/flash/action/Action.java | 12 +----------- .../decompiler/flash/gui/action/ActionPanel.java | 3 --- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/Action.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/Action.java index 4d6320b8c..9fd06575e 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/Action.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/Action.java @@ -962,17 +962,7 @@ public abstract class Action implements GraphSourceItem { } List out; try { - try { - out = ActionGraph.translateViaGraph(cnt.getRegNames(), variables2, functions, actions.subList(adr2ip(actions, endAddr), adr2ip(actions, endAddr + size)), version, staticOperation, path + (cntName == null ? "" : "/" + cntName)); - } catch (InterruptedException ex) { - throw ex; - } catch (Exception ex) { - boolean inter = Thread.currentThread().isInterrupted(); - ActionList a = new ActionList(actions); - String b = a.toString(); - String c = b; - throw ex; - } + out = ActionGraph.translateViaGraph(cnt.getRegNames(), variables2, functions, actions.subList(adr2ip(actions, endAddr), adr2ip(actions, endAddr + size)), version, staticOperation, path + (cntName == null ? "" : "/" + cntName)); } catch (OutOfMemoryError | TranslateException | StackOverflowError ex2) { logger.log(Level.SEVERE, "Decompilation error in: " + path, ex2); if (ex2 instanceof OutOfMemoryError) { diff --git a/src/com/jpexs/decompiler/flash/gui/action/ActionPanel.java b/src/com/jpexs/decompiler/flash/gui/action/ActionPanel.java index 7dd06a435..5f25d66ff 100644 --- a/src/com/jpexs/decompiler/flash/gui/action/ActionPanel.java +++ b/src/com/jpexs/decompiler/flash/gui/action/ActionPanel.java @@ -52,7 +52,6 @@ import com.jpexs.decompiler.flash.tags.base.ASMSource; import com.jpexs.decompiler.graph.CompilationException; import com.jpexs.helpers.CancellableWorker; import com.jpexs.helpers.Helper; -import com.jpexs.helpers.Stopwatch; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.FlowLayout; @@ -424,9 +423,7 @@ public class ActionPanel extends JPanel implements SearchListener