Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b205f5a9 authored by Winson's avatar Winson Committed by android-build-merger
Browse files

Merge \\\"Only skip trimming task if the stacks are not null.\\\" into nyc-dev...

Merge \\\"Only skip trimming task if the stacks are not null.\\\" into nyc-dev am: 6ba96df8 am: f654d3e0
am: 87cff0ba

Change-Id: Ieec94ccf440a737e39551f5b264509d017ec9665
parents e2b87c4b 87cff0ba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {