This is good, but the last column heading blank.
I fixed it by changing line 86 in Table.java - the for look in
getColumnsNameAsArray, which went
for (int i = 0; i < getNumberOfColumns() -1; i++) {
to
for (int i = 0; i < getNumberOfColumns(); i++) {
removing the "-1"
This is good, but the last column heading blank.
I fixed it by changing line 86 in Table.java - the for look in
getColumnsNameAsArray, which went
for (int i = 0; i < getNumberOfColumns() -1; i++) {
to
for (int i = 0; i < getNumberOfColumns(); i++) {
removing the "-1"