Skip to content

Commit

Permalink
🚨 add missing final
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <[email protected]>
  • Loading branch information
McPringle committed Jul 16, 2024
1 parent c60a9c9 commit 6c6cd5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public boolean isEnabled() {
allTalks = getTalks(statement);
allAssignments = getAssignments(statement);
allSpeakers = getSpeakers(statement);
} catch (SQLException e) {
} catch (final SQLException e) {
// if the error message is "out of memory", it probably means no database file is found
throw new SessionImportException(String.format(
"Error importing session data for Java Forum Stuttgart: %s",
Expand Down

0 comments on commit 6c6cd5d

Please sign in to comment.