We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9caa25b commit 3cd7d7eCopy full SHA for 3cd7d7e
dex-obfuscator/src/main/java/top/niunaijun/obfuscator/IRObfuscator.java
@@ -28,8 +28,8 @@ public static IRObfuscator get(ObfuscatorConfiguration obf) {
28
public IRObfuscator(ObfuscatorConfiguration configuration) {
29
this.configuration = configuration;
30
this.chains = new LinkedList<>();
31
- this.chains.add(new IfObfuscator());
32
this.chains.add(new SubObfuscator());
+ this.chains.add(new IfObfuscator());
33
}
34
35
public void reBuildInstructions(IrMethod ir) {
0 commit comments