mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
7 lines
117 B
Plaintext
7 lines
117 B
Plaintext
public class X {
|
|
void f(Object action) {
|
|
if (action instanceof Runnable) {
|
|
((Runnable)action)
|
|
}
|
|
}
|
|
} |