mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
for the "Convert to local" quick-fix of the "Field can be local" inspection GitOrigin-RevId: f82f38ca4c6eda299519eef80e6a90aa8d4b2f68
9 lines
179 B
Java
9 lines
179 B
Java
// "Convert field to local variable in initializer section" "true-preview"
|
|
class TestInitializer {
|
|
|
|
{
|
|
final boolean field = true;
|
|
System.out.println(field);
|
|
}
|
|
|
|
} |