Skip to content

Commit

Permalink
[hotfix] Remove unnecessary warning suppression.
Browse files Browse the repository at this point in the history
This suppression was added to supress compiler warning about 'finally' not returning from 'System.exit()'.
With the introduction of the indirection to the security manager, this compiler warning no longer happens.
  • Loading branch information
StephanEwen committed Jul 13, 2021
1 parent 4b867d8 commit 6451a1c
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ public final class FatalExitExceptionHandler implements Thread.UncaughtException
public static final int EXIT_CODE = -17;

@Override
@SuppressWarnings("finally")
public void uncaughtException(Thread t, Throwable e) {
try {
LOG.error(
Expand Down

0 comments on commit 6451a1c

Please sign in to comment.