Skip to content

Commit

Permalink
Removed use of diamond operator as we don't use source level 7+ yet.
Browse files Browse the repository at this point in the history
  • Loading branch information
netmackan committed Jun 12, 2016
1 parent d7f2ef0 commit a402125
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ protected Cursor getCurrentRange() {
}

public List<Task> findCurrentlyActive() {
List<Task> activeTasks = new ArrayList<>();
List<Task> activeTasks = new ArrayList<Task>();
for (Task task : tasks) {
if (task.isRunning()) {
activeTasks.add(task);
Expand Down

0 comments on commit a402125

Please sign in to comment.