Код: Выделить всё
List updatedList = updatingUniquedList
.stream()
.map(s -> {
Call call = callsBufferMap.get(s);
}
return call;
}).collect(Collectors.toList());
Подробнее здесь: https://stackoverflow.com/questions/639 ... ors-tolist
Код: Выделить всё
List updatedList = updatingUniquedList
.stream()
.map(s -> {
Call call = callsBufferMap.get(s);
}
return call;
}).collect(Collectors.toList());