Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e3cac08e authored by Ian Rogers's avatar Ian Rogers Committed by android-build-merger
Browse files

Merge "Fix call to equals that could never succeed." into nyc-dev

am: 748620e9

* commit '748620e9':
  Fix call to equals that could never succeed.

Change-Id: I82af33ea3b93c4017c845b1f791ebee403bffe21
parents 023b3381 748620e9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;