1
0
Fork 0

Removed unnecessary code.

main
Oliver Hummel 2023-12-14 08:24:22 +01:00
parent 47d2db4f40
commit a127ce585b
1 changed files with 0 additions and 2 deletions

View File

@ -161,8 +161,6 @@ public class Spreadsheet {
sb.append(String.format("%2s", rc++) + ": "); sb.append(String.format("%2s", rc++) + ": ");
for (Cell c : r) { for (Cell c : r) {
if (c == null || c.isEmpty())
c.setValue(" ");
sb.append(c + " | "); sb.append(c + " | ");
} }