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 d4c162f commit 52396e3Copy full SHA for 52396e3
src/main/java/com/javadeobfuscator/deobfuscator/DeobfuscatorMain.java
@@ -88,6 +88,10 @@ public static int run(String[] args) throws ClassNotFoundException {
88
return 4;
89
}
90
91
+ if (configuration.isDetect()) {
92
+ return run(configuration);
93
+ }
94
+
95
if (configuration.getOutput() == null) {
96
logger.error("An output JAR must be specified");
97
return 5;
@@ -106,6 +110,10 @@ public static int run(String[] args) throws ClassNotFoundException {
106
110
return 6;
107
111
108
112
113
114
115
116
+ private static int run(Configuration configuration) {
109
117
Deobfuscator deobfuscator = new Deobfuscator(configuration);
118
119
try {
0 commit comments