mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
7 lines
195 B
Java
7 lines
195 B
Java
class Test {
|
|
|
|
void foo(Object x) {
|
|
if (x instanceof String) x = ((String)x).substring(1);
|
|
if (x instanceof String) x = <selection>((String)x).substring(1)</selection>;
|
|
}
|
|
} |