refactor dao

This commit is contained in:
Loredana Crusoveanu 2018-09-23 17:54:41 +03:00
parent 1ee74058a2
commit 1a8eb6a0ef

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