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

Commit 76ab6f97 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

am: 08241ab2

* commit '08241ab2':
  Fix a compilation error due to 1.8 type inference differences
parents be0fa44e 08241ab2
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) {