Skip to content

Commit

Permalink
Fixed #890
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargus committed Mar 4, 2016
1 parent 317b45e commit 855e00d
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 @@ -37,6 +37,7 @@ to [sourceforge feature requests](https://sourceforge.net/p/jabref/features/) by
### Fixed
- Fixed [#598](https://github.com/JabRef/jabref/issues/598) and [#402](https://github.com/JabRef/jabref/issues/402): No more issues with invalid icons for ExternalFileTypes in global search or after editing the settings
- Fixed [#883](https://github.com/JabRef/jabref/issues/883): No NPE during cleanup
- Fixed [#890](https://github.com/JabRef/jabref/issues/890): No NPE when renaming file
- Fixed [#466](https://github.com/JabRef/jabref/issues/466): Rename PDF cleanup now also changes case of file name
- Fixed [#621](https://github.com/JabRef/jabref/issues/621) and [#669](https://github.com/JabRef/jabref/issues/669): Encoding and preamble now end with newline.
- Make BibTex parser more robust against missing newlines
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/sf/jabref/logic/layout/Layout.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void setPostFormatter(LayoutFormatter formatter) {
}

public String doLayout(BibEntry bibtex, BibDatabase database) {
return doLayout(bibtex, database, null);
return doLayout(bibtex, database, Optional.empty());
}

/**
Expand Down

0 comments on commit 855e00d

Please sign in to comment.