set default deobfuscation min length to 3 (#332)

This commit is contained in:
Skylot
2018-08-15 15:25:09 +03:00
parent fad0091d87
commit 9a4e8bdb48
2 changed files with 9 additions and 3 deletions
@@ -64,7 +64,7 @@ public class JadxCLIArgs {
protected boolean deobfuscationOn = false;
@Parameter(names = {"--deobf-min"}, description = "min length of name, renamed if shorter")
protected int deobfuscationMinLength = 4;
protected int deobfuscationMinLength = 3;
@Parameter(names = {"--deobf-max"}, description = "max length of name, renamed if longer")
protected int deobfuscationMaxLength = 64;