Replace pattern "user instanceof IdentifiedUser" with method call

Change-Id: Iac3af1340206ffd8f10db133bca5eab1f85926b6
This commit is contained in:
David Ostrovsky
2013-09-04 09:18:36 +02:00
committed by Shawn Pearce
parent cd4be95d6e
commit a35f8a20ab
34 changed files with 52 additions and 41 deletions

View File

@@ -412,4 +412,10 @@ public class IdentifiedUser extends CurrentUser {
public String toString() {
return "IdentifiedUser[account " + getAccountId() + "]";
}
/** Check if user is the IdentifiedUser */
@Override
public boolean isIdentifiedUser() {
return true;
}
}