mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 06:12:33 +07:00
8560c6a5d1
GitOrigin-RevId: 571a82f66623887c1b5008963df842b2597c58c9
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);
|
|
}
|
|
|
|
} |