mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Tables panel - check for null value of date finished.
This commit is contained in:
parent
bb06591f53
commit
51e4caca19
1 changed files with 5 additions and 1 deletions
|
@ -851,7 +851,11 @@ class MatchesTableModel extends AbstractTableModel {
|
|||
case 5:
|
||||
return timeFormatter.format(matches[arg0].getStartTime());
|
||||
case 6:
|
||||
return timeFormatter.format(matches[arg0].getEndTime());
|
||||
if (matches[arg0].getEndTime() != null) {
|
||||
return timeFormatter.format(matches[arg0].getEndTime());
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
case 7:
|
||||
return "None";
|
||||
case 8:
|
||||
|
|
Loading…
Reference in a new issue