Merge "Updating user restrictions when they are removed" into nyc-dev

This commit is contained in:
TreeHugger Robot
2016-05-25 03:11:47 +00:00
committed by Android (Google) Code Review

View File

@@ -2180,8 +2180,9 @@ public class AppOpsService extends IAppOpsService.Stub {
Preconditions.checkNotNull(token);
for (int i = 0; i < AppOpsManager._NUM_OP; i++) {
String restriction = AppOpsManager.opToRestriction(i);
if (restriction != null && restrictions.getBoolean(restriction, false)) {
setUserRestrictionNoCheck(i, true, token, userHandle, null);
if (restriction != null) {
setUserRestrictionNoCheck(i, restrictions.getBoolean(restriction, false), token,
userHandle, null);
}
}
}