Skip to content

Commit

Permalink
Duplicate check on import should be run in background Task JabRef#4963
Browse files Browse the repository at this point in the history
  • Loading branch information
dpolishc committed Jun 2, 2019
1 parent 300eae7 commit 006a443
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ public void importEntries(List<BibEntry> entriesToImport) {
dialogService.notify(Localization.lang("Import canceled"));
} else {
buildImportHandlerThenImportEntries(entriesToImport);
dialogService.notify(Localization.lang("Number of entries successfully imported") + ": " + entriesToImport.size());
}
} else {
buildImportHandlerThenImportEntries(entriesToImport);
Expand All @@ -114,6 +113,7 @@ private void buildImportHandlerThenImportEntries(List<BibEntry> entriesToImport)
undoManager,
stateManager);
importHandler.importEntries(entriesToImport);
dialogService.notify(Localization.lang("Number of entries successfully imported") + ": " + entriesToImport.size());
}

/**
Expand Down

0 comments on commit 006a443

Please sign in to comment.