mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +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);
|
|
}
|
|
} |