mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
Also makes it so refactoring isn't called in write action and won't cause deadlocks. GitOrigin-RevId: 204fd9f9a0b2e942b1c9eb56b3d9938b2666d123
9 lines
171 B
Java
9 lines
171 B
Java
// "Convert field to local variable in initializer section" "true-preview"
|
|
class TestInitializer {
|
|
|
|
{
|
|
boolean field = true;
|
|
System.out.println(field);
|
|
}
|
|
|
|
} |