From 0594cb236f6998a60fa1f6f85fb24967fb4e4eaa Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Tue, 10 Oct 2023 23:15:59 +0200 Subject: [PATCH] Use .COMMENT instead of outdated .REVIEW --- CHANGELOG.md | 1 + .../java/org/jabref/logic/importer/fileformat/IsiImporter.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b4e10494f9..f2deb3880c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv - The ampersand checker now skips verbatim fields (`file`, `url`, ...). [#10419](https://github.com/JabRef/jabref/pull/10419) - If no existing document is selected for exporting "XMP annotated pdf" JabRef will now create a new PDF file with a sample text and the metadata. [#10102](https://github.com/JabRef/jabref/issues/10102) - We modified the DOI cleanup to infer the DOI from an ArXiV ID if it's present. [10426](https://github.com/JabRef/jabref/issues/10426) +- The Medline importer uses the field `comment` for notes (instead of `review). ### Fixed diff --git a/src/main/java/org/jabref/logic/importer/fileformat/IsiImporter.java b/src/main/java/org/jabref/logic/importer/fileformat/IsiImporter.java index 6b5a4cead56..56b6b4052ae 100644 --- a/src/main/java/org/jabref/logic/importer/fileformat/IsiImporter.java +++ b/src/main/java/org/jabref/logic/importer/fileformat/IsiImporter.java @@ -97,7 +97,7 @@ public boolean isRecognizedFormat(BufferedReader reader) throws IOException { } public static void processSubSup(Map map) { - Field[] subsup = {StandardField.TITLE, StandardField.ABSTRACT, StandardField.REVIEW, new UnknownField("notes")}; + Field[] subsup = {StandardField.TITLE, StandardField.ABSTRACT, StandardField.COMMENT, new UnknownField("notes")}; for (Field aSubsup : subsup) { if (map.containsKey(aSubsup)) {