mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +07:00
11 lines
230 B
Java
11 lines
230 B
Java
// "Convert field to local variable in constructor" "true-preview"
|
|
class Test {
|
|
|
|
private final String f<caret>ield;
|
|
|
|
public Test(String param) {
|
|
field = param;
|
|
System.out.println(field == null ? "null" : field);
|
|
}
|
|
|
|
} |