mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 12:50:56 +07:00
15 lines
224 B
Java
15 lines
224 B
Java
// "Bind constructor parameters to fields" "false"
|
|
|
|
class Bar {
|
|
|
|
private int myi1;
|
|
private int myi2;
|
|
|
|
Bar(int <caret>i1, int i2, String i3) {
|
|
this();
|
|
}
|
|
Bar(){
|
|
myi1 = 1;
|
|
myi2 = 1;
|
|
}
|
|
} |