Merge "Fix the arguments order to postBlockedReasonsChangedMsg." into tm-dev

This commit is contained in:
Sudheer Shanka
2022-03-30 17:08:02 +00:00
committed by Android (Google) Code Review

View File

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