Fix the arguments order to postBlockedReasonsChangedMsg. am: 63a7d711c7

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2065615

Change-Id: I924913d1dd2abceb1ab7f84db5f9cee0daac4007
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Sudheer Shanka
2022-04-15 18:17:45 +00:00
committed by Automerger Merge Worker

View File

@@ -5044,8 +5044,8 @@ public class NetworkPolicyManagerService extends INetworkPolicyManager.Stub {
}
if (oldEffectiveBlockedReasons != newEffectiveBlockedReasons) {
postBlockedReasonsChangedMsg(uid,
oldEffectiveBlockedReasons,
newEffectiveBlockedReasons);
newEffectiveBlockedReasons,
oldEffectiveBlockedReasons);
postUidRulesChangedMsg(uid, uidRules);
}