mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 13:07:01 +07:00
for the "Convert to local" quick-fix of the "Field can be local" inspection GitOrigin-RevId: f82f38ca4c6eda299519eef80e6a90aa8d4b2f68
11 lines
192 B
Java
11 lines
192 B
Java
// "Convert field to local variable in initializer section" "true-preview"
|
|
class TestInitializer {
|
|
|
|
private boolean fie<caret>ld;
|
|
|
|
{
|
|
field = true;
|
|
System.out.println(field);
|
|
}
|
|
|
|
} |