Remove a junk TODO

This commit is contained in:
Dave Burke
2022-01-25 21:25:16 -06:00
parent 9d71f4ea8c
commit ea6ec35044

View File

@@ -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:");