Skip to content

Commit

Permalink
gwt: Fix bug where the statistics tables were not properly cleared.
Browse files Browse the repository at this point in the history
  • Loading branch information
calin-iorgulescu committed Mar 10, 2015
1 parent cd749df commit b0de73e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ public HTMLTable getStudentTable() {
return studentTable;
}

private void populateTable(HTMLTable table, User user, Assignment assignments[], ArrayList<ResultInfo> resultsInfo) {
private void populateTable(FlexTable table, User user, Assignment assignments[], ArrayList<ResultInfo> resultsInfo) {
table.removeAllRows();
table.setCellPadding(5);
table.setCellSpacing(0);
table.setStyleName(style.table());
Expand Down

0 comments on commit b0de73e

Please sign in to comment.