fixed various NPEs

This commit is contained in:
BetaSteward 2011-09-12 21:15:54 -04:00
parent d01c992f2e
commit ad4b4e82c2
3 changed files with 19 additions and 9 deletions

View file

@ -470,6 +470,8 @@ public class TableController {
}
public boolean isOwner(UUID userId) {
if (userId == null)
return false;
return userId.equals(this.userId);
}