Fix minor bug introduced from rebasing
Bug: 232918480 Test: manual Change-Id: I5af62c85064ca7e1f578feb957c41db7d4bc1eab
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user