mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
11 lines
149 B
Java
11 lines
149 B
Java
class A {
|
|
private int myI;
|
|
|
|
private A(int <caret>i) {
|
|
myI = i;
|
|
}
|
|
|
|
public static A create() {
|
|
return new A(0);
|
|
}
|
|
} |