supretion de code inutile et ajout de commentaire

This commit is contained in:
marc barbier
2020-12-17 11:22:42 +01:00
parent 0345dcddec
commit fa290c58fc
14 changed files with 124 additions and 29 deletions
@@ -6,9 +6,6 @@ import java.util.ArrayList;
import java.util.List;
public class Hand {
private static final int NUMBER_OF_CARDS_IN_STARTING_HAND = 5;
private List<Card> hand;
public Hand()
@@ -25,7 +22,7 @@ public class Hand {
{
for(int i = 0 ; i < amount;i++)
{
hand.add(deck.getCards().pop());
hand.add(deck.draw());
}
}