mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
13 lines
210 B
Java
13 lines
210 B
Java
// "Move assignment to field declaration" "INFORMATION"
|
|
public class Test {
|
|
String myField = getValue();
|
|
private String value;
|
|
|
|
void f() {
|
|
}
|
|
|
|
public static String getValue() {
|
|
return value;
|
|
}
|
|
}
|