mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
14 lines
206 B
Java
14 lines
206 B
Java
// "Add constructor parameter" "true"
|
|
class A {
|
|
private final int field;
|
|
private int j;
|
|
|
|
A(int field) {
|
|
this(0, field);
|
|
}
|
|
|
|
A(int j, int field) {
|
|
this.j = j;
|
|
this.field = field;
|
|
}
|
|
} |