diff --git a/CHANGELOG.md b/CHANGELOG.md index cef5ae6bc14..0a1ce06b94e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -524,6 +524,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - We fixed an issue where the "Search for unlinked local files" would throw an exception when parsing the content of a PDF-file with missing "series" information [#5128](https://github.com/JabRef/jabref/issues/5128) - We fixed an issue where the XMP Importer would incorrectly return an empty default entry when importing pdfs [#6577](https://github.com/JabRef/jabref/issues/6577) - We fixed an issue where opening the menu 'Library properties' marked the library as modified [#6451](https://github.com/JabRef/jabref/issues/6451) +- We fixed an issue when importing resulted in an exception [#7343](https://github.com/JabRef/jabref/issues/7343) ### Removed diff --git a/src/main/java/org/jabref/logic/importer/ImportCleanup.java b/src/main/java/org/jabref/logic/importer/ImportCleanup.java index 787b56159b2..6aae40cd0d5 100644 --- a/src/main/java/org/jabref/logic/importer/ImportCleanup.java +++ b/src/main/java/org/jabref/logic/importer/ImportCleanup.java @@ -33,6 +33,6 @@ public BibEntry doPostCleanup(BibEntry entry) { * Performs a format conversion of the given entry collection into the targeted format. */ public void doPostCleanup(Collection entries) { - entries.parallelStream().forEach(entry -> doPostCleanup(entry)); + entries.forEach(this::doPostCleanup); } }