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

This commit is contained in:
Neil Fuller
2016-02-16 15:01:43 +00:00
committed by Android (Google) Code Review

View File

@@ -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) {