Merge "Only skip trimming task if the stacks are not null." into nyc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
6ba96df815
@@ -621,7 +621,7 @@ class RecentTasks extends ArrayList<TaskRecord> {
|
||||
for (int i = 0; i < recentsCount; i++) {
|
||||
final TaskRecord tr = get(i);
|
||||
if (task != tr) {
|
||||
if (task.stack != tr.stack) {
|
||||
if (task.stack != null && tr.stack != null && task.stack != tr.stack) {
|
||||
continue;
|
||||
}
|
||||
if (task.userId != tr.userId) {
|
||||
|
||||
Reference in New Issue
Block a user