Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0594cb2

Browse files
committedOct 10, 2023
Use .COMMENT instead of outdated .REVIEW
1 parent c444c73 commit 0594cb2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
2828
- The ampersand checker now skips verbatim fields (`file`, `url`, ...). [#10419](https://github.com/JabRef/jabref/pull/10419)
2929
- 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)
3030
- 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)
31+
- The Medline importer uses the field `comment` for notes (instead of `review).
3132

3233
### Fixed
3334

‎src/main/java/org/jabref/logic/importer/fileformat/IsiImporter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public boolean isRecognizedFormat(BufferedReader reader) throws IOException {
9797
}
9898

9999
public static void processSubSup(Map<Field, String> map) {
100-
Field[] subsup = {StandardField.TITLE, StandardField.ABSTRACT, StandardField.REVIEW, new UnknownField("notes")};
100+
Field[] subsup = {StandardField.TITLE, StandardField.ABSTRACT, StandardField.COMMENT, new UnknownField("notes")};
101101

102102
for (Field aSubsup : subsup) {
103103
if (map.containsKey(aSubsup)) {

0 commit comments

Comments
 (0)
Please sign in to comment.