mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
Remove a junk TODO
This commit is contained in:
@@ -34,7 +34,7 @@ public class Blackjack {
|
||||
List<Player> players = new ArrayList<>();
|
||||
// TODO instantiate Player instances and update below to set their current bets. Finish TODOs in Player.java first.
|
||||
|
||||
while(true) { // TODO is there a w
|
||||
while(true) {
|
||||
int[] bets = new int[nPlayers]; // empty array initialized with all '0' valuses.
|
||||
while(!betsAreValid(bets)){
|
||||
System.out.println("BETS:");
|
||||
|
||||
Reference in New Issue
Block a user