Merge "Compute correct rejected time" into pi-dev am: 29e2a3dd92

am: 787409aec0

Change-Id: I178f89f3ac313eee9f8ffa6acedc4b7ff98774ac
This commit is contained in:
Philip P. Moltmann
2018-04-26 14:06:34 -07:00
committed by android-build-merger

View File

@@ -1571,7 +1571,7 @@ public class AppOpsManager {
long time = 0;
for (int i = 0; i < _NUM_UID_STATE; i++) {
if (mRejectTimes[i] > time) {
time = mTimes[i];
time = mRejectTimes[i];
}
}
return time;