Switch for deobfuscation modes changed to checkbox (reset to disable old mode)

This commit is contained in:
Jindra Petřík
2015-07-04 16:34:53 +02:00
parent 03f6b4729e
commit 1c338b18ca
4 changed files with 7 additions and 4 deletions
@@ -330,7 +330,7 @@ public final class MethodBody implements Cloneable {
b.getCode().markMappedOffsets();
if (Configuration.autoDeobfuscate.get()) {
if (Configuration.deobfuscationMode.get() == 0) {
if (Configuration.deobfuscationOldMode.get()) {
try {
b.getCode().removeTraps(constants, trait, method_info.get(this.method_info), b, abc, scriptIndex, classIndex, isStatic, path);
} catch (Throwable ex) {