mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 19:28:58 +07:00
16 lines
248 B
Java
16 lines
248 B
Java
class test {
|
|
private static final boolean DEBUG = false;
|
|
|
|
private test field;
|
|
|
|
private test(test field) {
|
|
this.field = field;
|
|
}
|
|
|
|
private void method() {
|
|
if (DEBUG) {
|
|
field.method();
|
|
}
|
|
}
|
|
}
|