mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
14 lines
279 B
Java
14 lines
279 B
Java
// "Create Method 'f'" "true"
|
|
public class A {
|
|
public A() {
|
|
this(f());
|
|
}
|
|
|
|
private static int f() {
|
|
<selection>return 0; //To change body of created methods use File | Settings | File Templates.<caret></selection>
|
|
}
|
|
|
|
public A(int i) {
|
|
}
|
|
}
|