mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 18:03:06 +07:00
14 lines
212 B
Java
14 lines
212 B
Java
class Fun {
|
|
public static final boolean isDebug = true;
|
|
|
|
void foo() {
|
|
if (isDebug) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
void fooNegated() {
|
|
if (!isDebug) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
} |