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

Commit 3f351a4f authored by Neil Fuller's avatar Neil Fuller
Browse files

Fix a compilation error due to 1.8 type inference differences

The code does not compile when the Jack compiler is set to
-D jack.java.source.version=1.8.

The change has no functional impact.

Bug: 26753820
Change-Id: I19d3ffd65e31648d95bb7701d89710015cfaf552
parent ae8f843a
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) {