commit
41b5cd81f3
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user