finalized joptionpane fixed

This commit is contained in:
CT
2026-05-07 18:06:27 -05:00
parent 764b9cd2a0
commit 38f90ec94f
3 changed files with 35 additions and 7 deletions

View File

@@ -49,7 +49,7 @@ public class PlayerList {
public String toString() {
String s = "";
for (HockeyPlayer p : pList) {
s += p.toString();
s += p.toString() + "\n";
}
return s;
}