Replace pattern "user instanceof IdentifiedUser" with method call
Change-Id: Iac3af1340206ffd8f10db133bca5eab1f85926b6
This commit is contained in:
committed by
Shawn Pearce
parent
cd4be95d6e
commit
a35f8a20ab
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user