fix: minor fixes for type update limit option (#2629)

This commit is contained in:
Skylot
2025-09-09 21:16:54 +01:00
parent f61d90ec2f
commit 5726a52ab6
5 changed files with 118 additions and 111 deletions
@@ -59,9 +59,6 @@ public class JadxCLIArgs {
@Parameter(names = { "-j", "--threads-count" }, description = "processing threads count")
protected int threadsCount = JadxArgs.DEFAULT_THREADS_COUNT;
@Parameter(names = { "-tul", "--type-update-limit" }, description = "type update limit count")
protected int typeUpdatesLimitCount = 0;
@Parameter(names = { "--single-class" }, description = "decompile a single class, full name, raw or alias")
protected String singleClass = null;
@@ -258,6 +255,9 @@ public class JadxCLIArgs {
)
protected IntegerFormat integerFormat = IntegerFormat.AUTO;
@Parameter(names = { "--type-update-limit" }, description = "type update limit count (per one instruction)")
protected int typeUpdatesLimitCount = 10;
@Parameter(names = { "--fs-case-sensitive" }, description = "treat filesystem as case sensitive, false by default")
protected boolean fsCaseSensitive = false;