mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
13 lines
175 B
Java
13 lines
175 B
Java
// "Move assignment to field declaration" "INFORMATION"
|
|
|
|
class X {
|
|
int f;
|
|
X() {
|
|
f = <caret>0;
|
|
}
|
|
X(int i) {
|
|
if (1==1) f=0; else {
|
|
f = 0;//sds
|
|
}
|
|
}
|
|
} |