mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
10 lines
202 B
Java
10 lines
202 B
Java
// "Insert '(String)o' declaration" "true"
|
|
class C {
|
|
void f(Object o, Object f) {
|
|
if (o instanceof String) {//todo comment
|
|
|
|
String o1 = (String) o;
|
|
|
|
}
|
|
}
|
|
} |