Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions key.ui/src/main/java/de/uka/ilkd/key/gui/RecentFileMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,8 @@ public final void loadFrom(Path filename) {
LOGGER.debug("Could not read RecentFileList. Did not find file {}", filename);
} catch (IOException ioe) {
LOGGER.debug("Could not read RecentFileList. Some IO Error occured ", ioe);
} catch (Throwable t) {
LOGGER.debug("Could not read RecentFileList. Some Error occured ", t);
}
}

Expand Down
Loading