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

Commit 414d40e7 authored by Kholoud Mohamed's avatar Kholoud Mohamed
Browse files

Fix minor bug introduced from rebasing

Bug: 232918480
Test: manual
Change-Id: I5af62c85064ca7e1f578feb957c41db7d4bc1eab
parent c1861f63
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ final class PolicyState<V> {

    private boolean resolvePolicy() {
        V resolvedPolicy = mPolicyDefinition.resolvePolicy(mAdminsPolicy);
        boolean policyChanged = Objects.equals(resolvedPolicy, mCurrentResolvedPolicy);
        boolean policyChanged = !Objects.equals(resolvedPolicy, mCurrentResolvedPolicy);
        mCurrentResolvedPolicy = resolvedPolicy;

        return policyChanged;