Skip to content

Commit 636976a

Browse files
committedJan 11, 2023
8299849: Revert JDK-8294461: wrong effectively final determination by javac
Reviewed-by: vromero
1 parent 0abb87a commit 636976a

File tree

3 files changed

+6
-21
lines changed

3 files changed

+6
-21
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Flow.java

+6-5
Original file line numberDiff line numberDiff line change
@@ -2027,13 +2027,14 @@ void newVar(JCVariableDecl varDecl) {
20272027
void letInit(DiagnosticPosition pos, VarSymbol sym) {
20282028
if (sym.adr >= firstadr && trackable(sym)) {
20292029
if ((sym.flags() & EFFECTIVELY_FINAL) != 0) {
2030-
if (inits.isMember(sym.adr) || !uninits.isMember(sym.adr)) {
2031-
//assignment targeting an effectively final variable makes the
2032-
//variable lose its status of effectively final if the variable
2033-
//is definitely assigned or _not_ definitively unassigned
2030+
if (!uninits.isMember(sym.adr)) {
2031+
//assignment targeting an effectively final variable
2032+
//makes the variable lose its status of effectively final
2033+
//if the variable is _not_ definitively unassigned
20342034
sym.flags_field &= ~EFFECTIVELY_FINAL;
2035+
} else {
2036+
uninit(sym);
20352037
}
2036-
uninit(sym);
20372038
}
20382039
else if ((sym.flags() & FINAL) != 0) {
20392040
if ((sym.flags() & PARAMETER) != 0) {

‎test/langtools/tools/javac/lambda/8294461/EffectivelyFinalLoopIncrement.java

-14
This file was deleted.

‎test/langtools/tools/javac/lambda/8294461/EffectivelyFinalLoopIncrement.out

-2
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.