mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
14 lines
208 B
Java
14 lines
208 B
Java
// "Add constructor parameter" "true"
|
|
class A {
|
|
private final int field;
|
|
private int j;
|
|
|
|
A(int field) {
|
|
this(field, 0);
|
|
}
|
|
|
|
A(int field, int j) {
|
|
this.field = field;
|
|
this.j = j;
|
|
}
|
|
} |