mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-18 19:07:16 +07:00
9 lines
156 B
Java
9 lines
156 B
Java
// "Move assignment to field declaration" "true"
|
|
public class Test {
|
|
String myField = "foo";
|
|
private String value = myField.trim();
|
|
|
|
void f() {
|
|
}
|
|
}
|