Skip to content

Commit

Permalink
return
Browse files Browse the repository at this point in the history
  • Loading branch information
aschey-forpeople committed Jan 21, 2025
1 parent 8c3e0e8 commit 2f90bb0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,9 @@ private Set<String> getManifestsFromManifestLists(List<FinalManifestList> finalM
* @return timestamps
*/
private Set<Instant> getTimestampsFromManifestLists(List<FinalManifestList> finalManifestLists) {
finalManifestLists.stream().map(FinalManifestList::getTimestamp).collect(Collectors.toSet());
return finalManifestLists.stream()
.map(FinalManifestList::getTimestamp)
.collect(Collectors.toSet());
}

/**
Expand Down

0 comments on commit 2f90bb0

Please sign in to comment.