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