mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
7 lines
164 B
Plaintext
7 lines
164 B
Plaintext
class Test {
|
|
void test(Object obj) {
|
|
if (Math.random() > 0.5 || (obj instanceof String && ((String) obj).isEmpty())) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
} |