Skip to content

Commit

Permalink
fix(cli): use correct converter for "--decompilation-mode" option (#1434
Browse files Browse the repository at this point in the history
)(PR #1435)
  • Loading branch information
boberle committed Apr 4, 2022
1 parent e784cbd commit 9a9ac43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jadx-cli/src/main/java/jadx/cli/JadxCLIArgs.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class JadxCLIArgs {
+ "\n 'restructure' - restore code structure (normal java code)"
+ "\n 'simple' - simplified instructions (linear, with goto's)"
+ "\n 'fallback' - raw instructions without modifications",
converter = RenameConverter.class
converter = DecompilationModeConverter.class
)
protected DecompilationMode decompilationMode = DecompilationMode.AUTO;

Expand Down

0 comments on commit 9a9ac43

Please sign in to comment.