Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Apr 23, 2020
1 parent 03dd2a0 commit 6f9b148
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ private void fillErrorMap() {
BiMap<DOI, List<BibEntry>> duplicateMap = HashBiMap.create(bibEntries.size());
for (BibEntry bibEntry : bibEntries) {
bibEntry.getDOI().ifPresent(doi ->
duplicateMap.computeIfAbsent(doi, x -> new ArrayList<>()).add(bibEntry));
duplicateMap.computeIfAbsent(doi, absentDoi -> new ArrayList<>()).add(bibEntry));
}

duplicateMap.inverse().keySet().stream()
Expand Down

0 comments on commit 6f9b148

Please sign in to comment.