mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-24 15:15:33 +00:00
#776 FFDec stop working at all after setting "number of threads" to 0 fixed
This commit is contained in:
@@ -690,6 +690,15 @@ public class Configuration {
|
||||
return ret;
|
||||
}
|
||||
|
||||
public static int getParallelThreadCount() {
|
||||
int count = parallelThreadCount.get();
|
||||
if (count < 2) {
|
||||
count = 2;
|
||||
}
|
||||
|
||||
return count;
|
||||
}
|
||||
|
||||
public static File getFlashLibPath() {
|
||||
String home = getFFDecHome();
|
||||
File libsdir = new File(home + "flashlib");
|
||||
|
||||
Reference in New Issue
Block a user