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

Commit 08241ab2 authored by Neil Fuller's avatar Neil Fuller Committed by android-build-merger
Browse files

Merge "Fix a compilation error due to 1.8 type inference differences" into nyc-dev

am: 5393a660

* commit '5393a660':
  Fix a compilation error due to 1.8 type inference differences
parents bb5d6d91 5393a660
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ public class TaskStackHorizontalViewAdapter extends
    }

    public TaskStackHorizontalViewAdapter(List tasks) {
        mTaskList = new ArrayList<>(tasks);
        mTaskList = new ArrayList<Task>(tasks);
    }

    public void setNewStackTasks(List tasks) {