mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
[java] introduce local variable: allow skip final modifier in effectively final context
GitOrigin-RevId: 1f370ec15dad0027f8625131c67795e15586edd5
This commit is contained in:
committed by
intellij-monorepo-bot
parent
aa03afc7b6
commit
9755036efb
@@ -1,7 +1,7 @@
|
||||
public class TestClass {
|
||||
void x() {
|
||||
new Exception() {
|
||||
private final int j = doSomething();
|
||||
private int j = doSomething();
|
||||
|
||||
int doSomething() { return 1; }
|
||||
void a() {
|
||||
|
||||
Reference in New Issue
Block a user