mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
14 lines
317 B
Java
14 lines
317 B
Java
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class X {
|
|
void foo(@NotNull Object o) {
|
|
<selection>Runnable r = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
System.out.println(o);
|
|
}
|
|
};</selection>
|
|
}
|
|
}
|