x86Cow / javaBlackjack

Undocumented constructor found JAVA-D1002
Documentation
Minor
a year agoa year old
Consider adding a doc comment for Card
 3    private int suit;
 4    private int face;
 5    
 6    public Card() {} 7
 8    /**
 9     * Constructs a card object with specified suit and face
Consider adding a doc comment for Player
 8    private String name;
 9
10
11    public Player() {12        chipsAmount = 100;13    }14    public Player(int amount, String name) {
15        chipsAmount = amount;
16        this.name = name;
Consider adding a doc comment for Player
11    public Player() {
12        chipsAmount = 100;
13    }
14    public Player(int amount, String name) {15        chipsAmount = amount;16        this.name = name;17    }18
19    public int getChipsAmount() {
20        return chipsAmount;