Fixes to unique rename, just use getMethods() instead of comparing names

This commit is contained in:
Adam
2015-07-11 13:34:32 -04:00
parent e263694eac
commit 3fbb69e102
6 changed files with 24 additions and 13 deletions

View File

@@ -42,10 +42,7 @@ public class Deob
long start = System.currentTimeMillis();
ClassGroup group = loadJar(args[0]);
new RenameUnique().run(group);
/*
// remove except RuntimeException
new RuntimeExceptions().run(group);
@@ -68,7 +65,8 @@ public class Deob
new UnusedFields().run(group);
//new ModularArithmeticDeobfuscation().run(group);
*/
new RenameUnique().run(group);
saveJar(group, args[1]);