Fix the arguments order to postBlockedReasonsChangedMsg. am: 63a7d711c7 am: 614b4659e1

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

Change-Id: I02ccef2092454c929ee846e320ec0e862db0fda8
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:36:59 +00:00
committed by Automerger Merge Worker

View File

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