fix: faulty rebase
Some checks failed
CI / Get Changed Files (pull_request) Successful in 11s
CI / Docker frontend validation (pull_request) Successful in 26s
CI / oxlint (pull_request) Successful in 35s
CI / eslint (pull_request) Successful in 41s
CI / prettier (pull_request) Failing after 40s
CI / Checkstyle Main (pull_request) Failing after 1m9s
CI / test-build (pull_request) Successful in 47s
CI / Docker backend validation (pull_request) Successful in 1m24s

This commit is contained in:
Constantin Simonis 2025-05-21 10:48:46 +02:00
commit 2b29ef81b2
No known key found for this signature in database
GPG key ID: 3878FF77C24AF4D2

View file

@ -112,7 +112,7 @@ public class BlackJackService {
dealCardToPlayer(game); dealCardToPlayer(game);
dealCardToSplitHand(game); dealCardToSplitHand(game);
return game; return processGameBasedOnState(game);
} }
private BlackJackGameEntity processGameBasedOnState(BlackJackGameEntity game) { private BlackJackGameEntity processGameBasedOnState(BlackJackGameEntity game) {