Skip to content

Commit

Permalink
Fix opening of preference dialog with Java 9 (#2329)
Browse files Browse the repository at this point in the history
* Fix opening of preference dialog with Java 9

* Fix typo

* Update CHANGELOG.md
  • Loading branch information
tobiasdiez authored Dec 1, 2016
1 parent 9f7ab2e commit 40384b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#
- We fixed an issue where the file permissions of the .bib-file were changed upon saving [#2279](https://github.com/JabRef/jabref/issues/2279).
- We fixed an issue which prevented that a database was saved successfully if JabRef failed to generate new BibTeX-keys [#2285](https://github.com/JabRef/jabref/issues/2285).
- We fixed an issue when JabRef restores its session and a shared database was used: The error message "No suitable driver found" will not appear.
- We fixed an issue which prevented the preference dialog to open on systems with Java 9.
- Update check now correctly notifies about new release if development version is used. [#2298](https://github.com/JabRef/jabref/issues/2298)
- Fixed [#2311](https://github.com/JabRef/jabref/issues/2311): The DBLP fetcher has been rewritten and is working again.
- Fixed [#2273](https://github.com/JabRef/jabref/issues/2273): Export via commandline in no-gui mode is now working again.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ public static List<String> getAvailableLookAndFeels() {
// Try to find L&F
Class.forName(l);
lookAndFeels.add(l);
} catch (ClassNotFoundException ignored) {
// Ignored
} catch (ClassNotFoundException|IllegalAccessError ignored) {
// LookAndFeel class does not exist or we don't have rights to access it
// Ignore it
}
}
return lookAndFeels;
Expand Down

0 comments on commit 40384b3

Please sign in to comment.