Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Siedlerchr committed Feb 23, 2020
1 parent 2a55830 commit c3777e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public static List<CitationStyle> discoverCitationStyles() {
}

URL url = CitationStyle.class.getResource("/modules/org.jabref/csl-styles");
Objects.requireNonNull(url)
Objects.requireNonNull(url);
if (url == null) {
return Collections.emptyList();
}
Expand Down

0 comments on commit c3777e1

Please sign in to comment.