We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed28cbd commit da239e9Copy full SHA for da239e9
src/main/java/com/bryansharp/jar2java/Main.java
@@ -54,9 +54,9 @@ private static void printJar(String jarFullPath) throws IOException {
54
ZipEntry zipEntry = entries.nextElement();
55
String name = zipEntry.getName();
56
if (name.endsWith(".class")) {
57
- log("start to show the code of " + name + "\n=======\ndisplayed as below:\n=======\n");
+// log("start to show the code of " + name + "\n=======\ndisplayed as below:\n=======\n");
58
String result = Decompiler.decompile(jarFullPath, name);
59
- log(result);
+// log(result);
60
stringToClassFile(name, result);
61
}
62
0 commit comments