mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-12 21:24:04 -08:00
cleanup
This commit is contained in:
@@ -12,7 +12,7 @@ public class Card {
|
||||
|
||||
private void init(int value) {
|
||||
this.value = value;
|
||||
if(value <11) {
|
||||
if (value < 11) {
|
||||
this.name = String.valueOf(value);
|
||||
} else {
|
||||
switch (value) {
|
||||
|
||||
Reference in New Issue
Block a user