Skip to content

Commit

Permalink
Use .COMMENT instead of outdated .REVIEW
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Oct 10, 2023
1 parent c444c73 commit 0594cb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public boolean isRecognizedFormat(BufferedReader reader) throws IOException {
}

public static void processSubSup(Map<Field, String> 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)) {
Expand Down

0 comments on commit 0594cb2

Please sign in to comment.