mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 14:37:46 +07:00
GitOrigin-RevId: 2d73053c1851e8c40bfeaef6466e944acc59b6bf
10 lines
141 B
Java
10 lines
141 B
Java
class AnotherFoo {}
|
|
public class Foo {
|
|
|
|
public static Foo createInstance() {
|
|
return new Foo();
|
|
}
|
|
|
|
private Foo() {
|
|
}
|
|
} |