mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 3fbd29e6543e21af934c4de8899bd6ed5bda6965
7 lines
170 B
Java
7 lines
170 B
Java
class X {
|
|
void test(Object obj) {
|
|
if (<selection>obj instanceof String s</selection> && s.length() > 5) {
|
|
System.out.println(s);
|
|
}
|
|
}
|
|
} |