style: apply spotless formatting
Build & Test (NowChessSystems) TeamCity build finished

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Janis Eccarius
2026-06-21 12:39:10 +02:00
parent 36a0b26c65
commit be941ff414
3 changed files with 25 additions and 22 deletions
@@ -71,7 +71,10 @@ class TournamentBotGamePlayer:
val id = objectMapper.readTree(response.readEntity(classOf[String])).path("id").asText()
response.close()
Option(id).filter(_.nonEmpty)
else { log.warnf("Parking bot %s returned status %d", botName(difficulty), response.getStatus); response.close(); None }
else {
log.warnf("Parking bot %s returned status %d", botName(difficulty), response.getStatus); response.close();
None
}
}.getOrElse(None)
}