Lauren Green 6 years ago
parent
commit
b8145f0eb7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/main/java/io/zipcoder/casino/ScoreSheet.java

+ 1
- 1
src/main/java/io/zipcoder/casino/ScoreSheet.java View File

@@ -30,7 +30,7 @@ public class ScoreSheet {
30 30
         return totalScore;
31 31
     }
32 32
 
33
-    public void printRow(Enum row, String description) {
33
+    public void printRow(ROW row, String description) {
34 34
         System.out.print(String.format("%-35s",description));
35 35
         if(getScore(row) != null) {
36 36
             System.out.println("** " + getScore(row) + " **");