Commit 6339cc20 authored by Skylot's avatar Skylot

chore: remove debug method invoke

parent 98e4c4b4
...@@ -50,7 +50,6 @@ import jadx.core.dex.nodes.FieldNode; ...@@ -50,7 +50,6 @@ import jadx.core.dex.nodes.FieldNode;
import jadx.core.dex.nodes.InsnNode; import jadx.core.dex.nodes.InsnNode;
import jadx.core.dex.nodes.MethodNode; import jadx.core.dex.nodes.MethodNode;
import jadx.core.dex.nodes.RootNode; import jadx.core.dex.nodes.RootNode;
import jadx.core.utils.DebugUtils;
import jadx.core.utils.RegionUtils; import jadx.core.utils.RegionUtils;
import jadx.core.utils.exceptions.CodegenException; import jadx.core.utils.exceptions.CodegenException;
import jadx.core.utils.exceptions.JadxRuntimeException; import jadx.core.utils.exceptions.JadxRuntimeException;
...@@ -560,7 +559,6 @@ public class InsnGen { ...@@ -560,7 +559,6 @@ public class InsnGen {
private void fallbackOnlyInsn(InsnNode insn) throws CodegenException { private void fallbackOnlyInsn(InsnNode insn) throws CodegenException {
if (!fallback) { if (!fallback) {
DebugUtils.dump(mth, "fallback");
throw new CodegenException(insn.getType() + " can be used only in fallback mode"); throw new CodegenException(insn.getType() + " can be used only in fallback mode");
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment