Skip to content

Commit

Permalink
chore: spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
yHSJ committed Dec 10, 2024
1 parent dfc641f commit 449e6ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/fi/sundae/bot/tournament/Matchmaker.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ public void endMatch(MatchRequest matchRequest, JDA jda) {
.findFirst();

if (maybeMatch.isEmpty()) {
ACTIVE_MATCHES.forEach(match -> System.out.printf("Match gameTx: %s\n", match.getGameTxHash()));
ACTIVE_MATCHES.forEach(
match -> System.out.printf("Match gameTx: %s\n", match.getGameTxHash()));
LOGGER.info("Match {} is not in ACTIVE_MATCHES", matchRequest.getGameId());
return;
}
Expand Down

0 comments on commit 449e6ed

Please sign in to comment.