loop multi stuff
This commit is contained in:
@@ -81,14 +81,27 @@ public class Deob
|
|||||||
// //new FieldMover().run(group);
|
// //new FieldMover().run(group);
|
||||||
//
|
//
|
||||||
// run(group, new UnusedClass());
|
// run(group, new UnusedClass());
|
||||||
//
|
|
||||||
// run(group, new ModArith());
|
ModArith mod = new ModArith();
|
||||||
|
mod.run(group);
|
||||||
|
|
||||||
new MultiplicationDeobfuscator().run(group);
|
int last = -1, cur;
|
||||||
|
while ((cur = mod.runOnce()) > 0)
|
||||||
// new MultiplyOneDeobfuscator().run(group);
|
{
|
||||||
//
|
new MultiplicationDeobfuscator().run(group);
|
||||||
// new MultiplyZeroDeobfuscator().run(group);
|
|
||||||
|
new MultiplyOneDeobfuscator().run(group);
|
||||||
|
|
||||||
|
new MultiplyZeroDeobfuscator().run(group);
|
||||||
|
|
||||||
|
if (last == cur)
|
||||||
|
{
|
||||||
|
System.out.println("break");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
last = cur;
|
||||||
|
}
|
||||||
|
|
||||||
saveJar(group, args[1]);
|
saveJar(group, args[1]);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user