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 5629fd7 commit 51be7a0Copy full SHA for 51be7a0
src/java/com/javadeobfuscator/deobfuscator/ui/SwingWindow.java
@@ -41,8 +41,8 @@ public class SwingWindow
41
private static Transformers trans;
42
private static Config config;
43
private static List<Class<?>> transformers;
44
- private static File inputOutputPath;
45
- private static File libPath;
+ private static File inputOutputPath = new File(System.getProperty("user.dir"));
+ private static File libPath = new File(System.getProperty("user.dir"));
46
private static final Map<Class<?>, String> TRANSFORMER_TO_NAME = new HashMap<>();
47
private static final Map<String, Class<?>> NAME_TO_TRANSFORMER = new HashMap<>();
48
0 commit comments