mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
11 lines
204 B
Java
11 lines
204 B
Java
// "Insert '(String)o' declaration" "true"
|
|
class C {
|
|
void f(Object o) {
|
|
if (o instanceof String) {
|
|
String s = (String) o;
|
|
<caret>
|
|
o = "";
|
|
}
|
|
}
|
|
}
|