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

Commit 689b6c40 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

am: e3cac08e

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

Change-Id: I5fa03a7d9cfa6e3c8ef2feb04838df3023b7aaae
parents e5b5c117 e3cac08e
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;