Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr authored and koppor committed Dec 8, 2021
1 parent 57f97b4 commit 632ece7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/org/jabref/logic/xmp/XmpUtilReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,7 @@ private static List<XMPMetadata> getXmpMetadata(PDDocument document) throws IOEx
String xmpMetaString = start + s + END_TAG + end;
try {
metaList.add(XmpUtilShared.parseXmpMetadata(new ByteArrayInputStream(xmpMetaString.getBytes())));
}
catch (IOException ex) {
} catch (IOException ex) {
LOGGER.error("Problem parsing XMP schema. Continuing with other schemas.", ex);
}
}
Expand Down

0 comments on commit 632ece7

Please sign in to comment.