mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
7 lines
183 B
Java
7 lines
183 B
Java
class A {
|
|
void test(Object obj) {
|
|
if (<selection>obj instanceof String s && s.trim().isEmpty()</selection>) {
|
|
System.out.println(s.length());
|
|
}
|
|
}
|
|
} |