mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 00:35:33 +07:00
GitOrigin-RevId: dd45e061f60ce6e018c2afb9b96462a84a7553cf
8 lines
91 B
Java
8 lines
91 B
Java
class A {
|
|
private A() {
|
|
}
|
|
|
|
static A createA() {
|
|
return new A();
|
|
}
|
|
} |