We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c34b544 commit ec53f6eCopy full SHA for ec53f6e
deobfuscator-api/src/main/java/uwu/narumi/deobfuscator/api/context/DeobfuscatorOptions.java
@@ -315,7 +315,7 @@ public DeobfuscatorOptions build() {
315
if (this.rtJarPath == null) {
316
Path rtJar = findRtJarPath();
317
if (rtJar != null) {
318
- LOGGER.warn("Auto-detected rt.jar path: {}", rtJar);
+ System.out.println("Auto-detected rt.jar path: " + rtJar);
319
this.rtJarPath = rtJar;
320
} else {
321
LOGGER.warn("Failed to auto-detect rt.jar path. Please provide path to rt.jar from Java 8 binaries, otherwise sandbox will not work.");
0 commit comments