mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 04:40:28 +07:00
13 lines
208 B
Java
13 lines
208 B
Java
// "Add constructor parameter" "true"
|
|
class Main{
|
|
private String a;
|
|
|
|
public Main(Integer a, String a1) {
|
|
this(null, a1);
|
|
}
|
|
|
|
|
|
public Main(Integer a, Integer b, String a1) {
|
|
this.a = a1;
|
|
}
|
|
} |