Adapted the cell output to match the removal of density

This commit is contained in:
Guillaume LE CHARTIER 2024-04-29 16:41:08 +02:00
parent 214eaffeee
commit facd751030
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public class Table {
this.table.add(i, new ArrayList<Cell>());
for (int j = 0; j < width; j++) {
//initialize each cell for each column
this.table.get(i).add(new Cell(0,1));
this.table.get(i).add(new Cell(0));
}
}