Merge "Merge "Fix the ordering of the result of app kill info" into rvc-dev am: da0d734c7d am: 6030f05717" into rvc-qpr-dev

This commit is contained in:
Automerger Merge Worker
2020-07-16 20:08:40 +00:00
committed by Android (Google) Code Review

View File

@@ -522,7 +522,7 @@ public final class AppExitInfoTracker {
AppExitInfoContainer container = records.get(filterUid); AppExitInfoContainer container = records.get(filterUid);
if (container != null) { if (container != null) {
mTmpInfoList.clear(); mTmpInfoList.clear();
results.addAll(container.toListLocked(mTmpInfoList, filterPid)); list.addAll(container.toListLocked(mTmpInfoList, filterPid));
} }
return AppExitInfoTracker.FOREACH_ACTION_NONE; return AppExitInfoTracker.FOREACH_ACTION_NONE;
}); });