We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 556790a commit bcd64d6Copy full SHA for bcd64d6
1 file changed
ch14/Deck.java
@@ -8,7 +8,6 @@ public class Deck extends CardCollection {
8
*/
9
public Deck(String label) {
10
super(label);
11
-
12
for (int suit = 0; suit <= 3; suit++) {
13
for (int rank = 1; rank <= 13; rank++) {
14
addCard(new Card(rank, suit));
0 commit comments