Skip to content

Commit 12b3289

Browse files
authored
Merge pull request #37 from sauce-code/sonar-qube-bugfixes
Fix Bugs listed by Sonar Qube.
2 parents 732cc36 + 73c51a3 commit 12b3289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cuckoo-uci/src/main/java/org/petero/cuckoo/uci/EngineControl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ private void startThread(final int minTimeLimit, final int maxTimeLimit, int max
242242
}
243243
tt.nextGeneration();
244244
final int srchmaxDepth = maxDepth;
245-
engineThread = Thread.ofVirtual().start(() -> {
245+
engineThread = new Thread(() -> {
246246
Move m = null;
247247
if (ownBook && !analyseMode) {
248248
Book book = new Book(false);

0 commit comments

Comments
 (0)