refactor: remove unused blackjack split funcionality #225
1 changed files with 1 additions and 0 deletions
|
@ -24,6 +24,7 @@ public class BlackJackService {
|
||||||
return blackJackGameRepository.findById(id).orElse(null);
|
return blackJackGameRepository.findById(id).orElse(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Transactional
|
||||||
public BlackJackGameEntity createBlackJackGame(UserEntity user, BigDecimal betAmount) {
|
public BlackJackGameEntity createBlackJackGame(UserEntity user, BigDecimal betAmount) {
|
||||||
BlackJackGameEntity game = new BlackJackGameEntity();
|
BlackJackGameEntity game = new BlackJackGameEntity();
|
||||||
game.setUser(user);
|
game.setUser(user);
|
||||||
|
|
Reference in a new issue