mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-04 12:55:34 +00:00
config setting to overwrite exported files
This commit is contained in:
@@ -164,7 +164,8 @@ public class CommandLineArgumentParser {
|
||||
Configuration.parallelSpeedUp,
|
||||
Configuration.internalFlashViewer,
|
||||
Configuration.autoDeobfuscate,
|
||||
Configuration.cacheOnDisk
|
||||
Configuration.cacheOnDisk,
|
||||
Configuration.overwriteExistingFiles
|
||||
};
|
||||
|
||||
public static boolean isCommandLineMode() {
|
||||
@@ -584,9 +585,6 @@ public class CommandLineArgumentParser {
|
||||
}
|
||||
String key = cp[0];
|
||||
String value = cp[1];
|
||||
if (key.toLowerCase().equals("paralelSpeedUp".toLowerCase())) {
|
||||
key = "parallelSpeedUp";
|
||||
}
|
||||
for (ConfigurationItem<Boolean> item : commandlineConfigBoolean) {
|
||||
if (key.toLowerCase().equals(item.getName().toLowerCase())) {
|
||||
Boolean bValue = parseBooleanConfigValue(value);
|
||||
|
||||
Reference in New Issue
Block a user