Fix call to equals that could never succeed.

Caught by Error Prone.
Bug: 27723540

Change-Id: I5901a3ca06e0cc85620f596cfa4178f5ad61d1a7
This commit is contained in:
Ian Rogers
2016-05-30 15:16:30 -07:00
parent 6ee1b50aa2
commit edf2f5747b

View File

@@ -701,8 +701,8 @@ public class RestrictedLockUtils {
if (userId != other.userId) {
return false;
}
if ((component == null && other == null) ||
(component != null && component.equals(other))) {
if ((component == null && other.component == null) ||
(component != null && component.equals(other.component))) {
return true;
}
return false;