mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
9 lines
178 B
Java
9 lines
178 B
Java
// "Move assignment to field declaration" "true"
|
|
public class Foo {
|
|
|
|
protected boolean isString[] ;
|
|
|
|
public Foo() {
|
|
isSt<caret>ring = new boolean[123];
|
|
}
|
|
} |