Changed number of threads in executerservice to one to prevent false order to save file
This commit is contained in:
parent
127e152637
commit
b4da0b2fef
|
@ -27,7 +27,7 @@ public class TournamentDecorator implements IsObservable{
|
|||
}
|
||||
}
|
||||
});
|
||||
executorService = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors());
|
||||
executorService = Executors.newFixedThreadPool(1);
|
||||
}
|
||||
|
||||
public void setFactoryDecorator(FactoryDecorator factoryDecorator) {
|
||||
|
|
Loading…
Reference in New Issue