refactor: remove unused blackjack split funcionality #225

Merged
ptran merged 2 commits from refactor-blackjack-split into main 2025-05-28 08:26:59 +00:00
Showing only changes of commit e9e2eba46f - Show all commits

View file

@ -24,6 +24,7 @@ public class BlackJackService {
return blackJackGameRepository.findById(id).orElse(null);
}
@Transactional
public BlackJackGameEntity createBlackJackGame(UserEntity user, BigDecimal betAmount) {
BlackJackGameEntity game = new BlackJackGameEntity();
game.setUser(user);