mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: efe6feafd81a99bde15e892530c1085fc4fb8772
7 lines
190 B
Java
7 lines
190 B
Java
class A {
|
|
void test(Object obj) {
|
|
if (obj instanceof String && <selection>((String)obj)</selection>.trim().isEmpty()) {
|
|
System.out.println("Found");
|
|
}
|
|
}
|
|
} |