diff --git a/src/SwingPresenter.java b/src/SwingPresenter.java index d3fa86c..1aa8b62 100644 --- a/src/SwingPresenter.java +++ b/src/SwingPresenter.java @@ -154,7 +154,7 @@ for(int j = 1; j < columnsData.length; j++) { Object cellValue = rowData.get(columnsData[j]); if(cellValue == null) { - tableData[rowCount][j] = "error"; + tableData[rowCount][j] = ""; } else { tableData[rowCount][j] = rowData.get(columnsData[j]).toString(); } @@ -163,7 +163,7 @@ for(int j = 0; j < columnsData.length; j++) { Object cellValue = rowData.get(columnsData[j]); if(cellValue == null) { - tableData[rowCount][j] = "error"; + tableData[rowCount][j] = ""; } else { tableData[rowCount][j] = rowData.get(columnsData[j]).toString(); } @@ -321,7 +321,7 @@ for(int j = 1; j < columnsData.length; j++) { Object cellValue = rowData.get(columnsData[j]); if(cellValue == null) { - tableData[rowCount][j] = "error"; + tableData[rowCount][j] = ""; } else { tableData[rowCount][j] = rowData.get(columnsData[j]).toString(); } @@ -330,7 +330,7 @@ for(int j = 0; j < columnsData.length; j++) { Object cellValue = rowData.get(columnsData[j]); if(cellValue == null) { - tableData[rowCount][j] = "error"; + tableData[rowCount][j] = ""; } else { tableData[rowCount][j] = rowData.get(columnsData[j]).toString(); }