Compare commits

..

No commits in common. "4b4de32e1d7aa12e9d0e93be3bd793cc0a273871" and "d7690e630e5ff636bd7ffc32644decb6cbc3c525" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View file

@ -89,8 +89,6 @@ public class BlackJackService {
if (playerHandValue == 21) {
return BlackJackState.PLAYER_WON;
} else if (playerHandValue > 21) {
return BlackJackState.PLAYER_LOST;
}
return BlackJackState.IN_PROGRESS;

View file

@ -2,6 +2,5 @@ package de.szut.casino.blackjack;
public enum BlackJackState {
PLAYER_WON,
IN_PROGRESS,
PLAYER_LOST,
IN_PROGRESS
}