mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
14 lines
217 B
Java
14 lines
217 B
Java
// "Move assignment to field declaration" "false"
|
|
public class Test {
|
|
String myField;
|
|
private String value;
|
|
|
|
void f() {
|
|
<caret>myField = getValue();
|
|
}
|
|
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
}
|