Skip to content

Commit a36ccee

Browse files
committed
improving descriptions on settings
1 parent 4ef400f commit a36ccee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/jadx/plugins/stringdecoder/B64DeobfuscateOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void registerOptions() {
4242
.defaultValue(35)
4343
.setter(v -> minAlphanumericPercent = v);
4444
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".requireValidLength")
45-
.description("Only flag strings whose total length (including any '=' padding) is divisible by 4; rejects structurally invalid Base64")
45+
.description("Only flag strings whose total length is divisible by 4; rejects structurally invalid Base64")
4646
.defaultValue(false)
4747
.setter(v -> requireValidLength = v);
4848
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".skipCamelCase")
@@ -54,7 +54,7 @@ public void registerOptions() {
5454
.defaultValue(true)
5555
.setter(v -> skipPascalCase = v);
5656
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".skipSnakeCase")
57-
.description("Skip short strings that are all-uppercase (CURSOR, FOO_BAR) or all-lowercase (closed, foo_bar) — these are almost never intentional Base64")
57+
.description("Skip short strings that are all-uppercase (CURSOR, FOO_BAR) or all-lowercase (closed, foo_bar)")
5858
.defaultValue(true)
5959
.setter(v -> skipSnakeCase = v);
6060
boolOption(JadxStringDecoderPlugin.PLUGIN_ID + ".skipDictionaryWords")

0 commit comments

Comments
 (0)