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