Fix the arguments order to postBlockedReasonsChangedMsg.

Bug: 226402870
Test: atest tests/cts/hostside/src/com/android/cts/net/HostsideNetworkCallbackTests.java
Change-Id: I1977034aa190b67de96d84d694c6546fd9318e79
This commit is contained in:
Sudheer Shanka
2022-03-30 01:37:51 -07:00
parent 78e9029df3
commit a2333d1b7a

View File

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