This is an automated email from the ASF dual-hosted git repository.

sewen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 6451a1c169fbde44c2c7c458cc717c0fcad01cf9
Author: Stephan Ewen <se...@apache.org>
AuthorDate: Tue Jul 13 15:05:25 2021 +0200

    [hotfix] Remove unnecessary warning suppression.
    
    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.
---
 .../src/main/java/org/apache/flink/util/FatalExitExceptionHandler.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/flink-core/src/main/java/org/apache/flink/util/FatalExitExceptionHandler.java 
b/flink-core/src/main/java/org/apache/flink/util/FatalExitExceptionHandler.java
index 2433398..8ff0e9b 100644
--- 
a/flink-core/src/main/java/org/apache/flink/util/FatalExitExceptionHandler.java
+++ 
b/flink-core/src/main/java/org/apache/flink/util/FatalExitExceptionHandler.java
@@ -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(

Reply via email to