Skip to content

Commit

Permalink
Update journal abbrev list (JabRef#8350)
Browse files Browse the repository at this point in the history
Co-authored-by: Siedlerchr <[email protected]>
  • Loading branch information
github-actions[bot] and Siedlerchr authored Dec 20, 2021
1 parent 1cb83e8 commit f15cfac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ private AbbreviationFormat() {
}

public static CSVFormat getCSVFormat() {
return CSVFormat.DEFAULT
.withIgnoreEmptyLines(true)
.withDelimiter(DELIMITER)
.withEscape(ESCAPE)
.withQuote(QUOTE)
.withTrim();
return CSVFormat.DEFAULT.builder()
.setIgnoreEmptyLines(true)
.setDelimiter(DELIMITER)
.setEscape(ESCAPE)
.setQuote(QUOTE)
.setTrim(true)
.build();
}
}
Binary file modified src/main/resources/journals/journalList.mv
Binary file not shown.

0 comments on commit f15cfac

Please sign in to comment.