mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 07:06:07 +00:00
#776 FFDec stop working at all after setting "number of threads" to 0 fixed
This commit is contained in:
@@ -1059,7 +1059,7 @@ public class SWFInputStream implements AutoCloseable {
|
||||
ExecutorService executor = null;
|
||||
List<Future<Tag>> futureResults = new ArrayList<>();
|
||||
if (parallel) {
|
||||
executor = Executors.newFixedThreadPool(Configuration.parallelThreadCount.get());
|
||||
executor = Executors.newFixedThreadPool(Configuration.getParallelThreadCount());
|
||||
futureResults = new ArrayList<>();
|
||||
}
|
||||
List<Tag> tags = new ArrayList<>();
|
||||
|
||||
Reference in New Issue
Block a user