Fixed a bug of handling of tournament sub tables if a user left. Some changes to match view.

This commit is contained in:
LevelX2 2014-09-04 19:03:48 +02:00
parent 3699b7ca3d
commit d051aef63f
3 changed files with 9 additions and 4 deletions

View file

@ -350,10 +350,13 @@ public abstract class MatchImpl implements Match {
sb.append("\nGame has started\n");
return sb.toString();
}
@Override
public Date getStartTime() {
return new Date(startTime.getTime());
if (startTime != null) {
return new Date(startTime.getTime());
}
return null;
}
@Override