Last active
August 29, 2015 14:11
-
-
Save novoj/9e6b42fb4ab75606a9b3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private Map<Integer, ? extends Address> getAddressIndex(Optional<SubjectData> currentSubjectData) { | |
return currentSubjectData | |
.map( | |
subjectData -> subjectData.getAddresses() | |
.stream() | |
.filter(address -> address.getEsoId() != null) | |
.collect(toMap(Address::getEsoId, t -> t)) | |
).orElse( | |
emptyMap() | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment