Skip to content

Commit

Permalink
BSR
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Aug 12, 2024
1 parent 3e8c20b commit eacae13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public Map<String, List> importFeed(Import importRequest) {
EDUGAIN_IMPORT_USER,
"Removed from eduGain feed"));

List deleted = results.computeIfAbsent("deleted", s -> new ArrayList());
List deleted = results.computeIfAbsent("deleted", s -> new ArrayList<>());
deleted.addAll(notInFeedAnymore.stream().map(ServiceProvider::getEntityId).collect(toList()));

results.put("total", Collections.singletonList(imports.size()));
Expand Down

0 comments on commit eacae13

Please sign in to comment.