Skip to content

Commit

Permalink
Update Score.java
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored Jan 6, 2023
1 parent 65c47eb commit 00ef635
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ public void report(final PrintStream out) {
sb.append(each + " ");
i++;
if ((i % 4) == 0) {
out.println("> " + sb );
out.println("> " + sb);
sb = new StringBuilder();
}
}
out.println("> " + sb );
out.println("> " + sb);
}

public String getMutatorName() {
Expand Down

0 comments on commit 00ef635

Please sign in to comment.