mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
16 lines
223 B
Java
16 lines
223 B
Java
// "Move initializer to constructor" "true"
|
|
public class X {
|
|
final int i<caret>;
|
|
|
|
public X(String s) {
|
|
i = 0;
|
|
}
|
|
public X() {
|
|
this(0);
|
|
}
|
|
public X(int i) {
|
|
this.i = 0;
|
|
}
|
|
|
|
}
|