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