Only in 1.4.2(_0X), javac outputs the warning message when "return" is
in finally block.
The output message is as follows.
--->
goedel% javac FinallyTest.java
FinallyTest.java:9: warning: finally clause cannot complete normally
}
^
1 warning
goedel%
<---
REPRODUCE:
To compile the java code.
-->
public class FinallyTest {
public static void main(String[] args) {
try {
System.out.println("FinnalyTest");
return;
} finally {
System.out.println("FinnalyTest finally");
return;
}
}
}
<--
======================================================================
in finally block.
The output message is as follows.
--->
goedel% javac FinallyTest.java
FinallyTest.java:9: warning: finally clause cannot complete normally
}
^
1 warning
goedel%
<---
REPRODUCE:
To compile the java code.
-->
public class FinallyTest {
public static void main(String[] args) {
try {
System.out.println("FinnalyTest");
return;
} finally {
System.out.println("FinnalyTest finally");
return;
}
}
}
<--
======================================================================
- duplicates
-
JDK-4821353 new warning "finally cannot complete normally" should not be enabled by default
-
- Resolved
-
- relates to
-
JDK-4832887 NPE from com.sun.tools.javac.v8.comp.Flow.checkInit in Mantis beta
-
- Resolved
-