1
0
Fork 0

Bugfix - OutofBoundsException.

main
Oliver Hummel 2023-12-19 15:25:55 +01:00
parent 505f428029
commit ada8f538a2
1 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ public class Spreadsheet {
else else
out.print(cell.getValue()); out.print(cell.getValue());
if (cell != row[cells.length-1]) if (cell != row[cells[0].length-1])
out.print(","); out.print(",");
} }
out.println(); out.println();
@ -182,7 +182,7 @@ public class Spreadsheet {
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
sb.append(" "); sb.append(" ");
for (int i = 0; i < cells.length; i++) { for (int i = 0; i < cells[0].length; i++) {
sb.append(" " + (char)('A'+ i) + " | "); sb.append(" " + (char)('A'+ i) + " | ");
} }