mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 00:35:33 +07:00
GitOrigin-RevId: efe6feafd81a99bde15e892530c1085fc4fb8772
7 lines
163 B
Java
7 lines
163 B
Java
class A {
|
|
void test(Object obj) {
|
|
if (obj instanceof String temp && temp.trim().isEmpty()) {
|
|
System.out.println("Found");
|
|
}
|
|
}
|
|
} |