mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
10 lines
141 B
Java
10 lines
141 B
Java
// "Insert '(Runnable)o' declaration" "false"
|
|
class C {
|
|
void f(Object o) {
|
|
if (!(o instanceof Runnable)) {
|
|
o<caret>
|
|
}
|
|
}
|
|
}
|
|
|