mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 04:03:20 +07:00
don't preserve assignments to final vars when write access is explicitly should be extracted GitOrigin-RevId: baa96e6cffc1daabd66d218b23c88594e3b34f1a
7 lines
126 B
Java
7 lines
126 B
Java
class Foo {
|
|
String parentName;
|
|
void m() {
|
|
<selection>parentName</selection>;
|
|
System.out.println(parentName);
|
|
}
|
|
} |