using collectingAndThen

This commit is contained in:
vizsoro 2018-09-23 20:25:06 +02:00
parent 31a8f2a4ec
commit f599419181
1 changed files with 3 additions and 3 deletions

View File

@ -22,9 +22,9 @@ public class TodoDao implements Dao<Todo> {
@Override @Override
public Collection<Todo> getAll() { public Collection<Todo> getAll() {
return Collections.unmodifiableCollection(todoList.stream() return todoList.stream()
.filter(Objects::nonNull) .filter(Objects::nonNull)
.collect(Collectors.toList())); .collect(Collectors.collectingAndThen(Collectors.toList(), Collections::unmodifiableList));
} }
@Override @Override