mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
11 lines
219 B
Java
11 lines
219 B
Java
// "Move initializer to constructor" "true"
|
|
public class X {
|
|
<caret>final int fi;
|
|
|
|
public X(String s) {
|
|
//To change body of created methods use File | Settings | File Templates.
|
|
fi = 0;
|
|
}
|
|
|
|
}
|