mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
15 lines
290 B
Java
15 lines
290 B
Java
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class C {
|
|
void foo(@NotNull Object o) {
|
|
Runnable r = () -> newMethod(o);
|
|
}
|
|
|
|
private void newMethod(@NotNull Object o) {
|
|
bar(o);
|
|
}
|
|
|
|
void bar(@NotNull Object o) {
|
|
}
|
|
} |