mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
14 lines
211 B
Java
14 lines
211 B
Java
public final class Foo {
|
|
private Foo() {
|
|
}
|
|
|
|
private static final boolean IS_LINUX;
|
|
|
|
static {
|
|
IS_LINUX = true;
|
|
}
|
|
|
|
public static boolean isLinux() {
|
|
return IS_LINUX;
|
|
}
|
|
} |