Skip to content

Commit

Permalink
chekstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed Mar 23, 2024
1 parent a6a83a5 commit 203b262
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/jabref/logic/xmp/XmpUtilWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ private void writeDocumentInformation(PDDocument document,
case StandardField.ABSTRACT ->
di.setSubject(value);
// do not write file field
case StandardField.FILE -> {}
case StandardField.FILE -> {
}
case null, default ->
resolvedEntry.getField(field).ifPresent(val -> di.setCustomMetadataValue("bibtex/" + field, val));
// We hit the case of an PDF-unsupported field --> write it directly
Expand Down

0 comments on commit 203b262

Please sign in to comment.