mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 07:15:51 +07:00
10 lines
190 B
Java
10 lines
190 B
Java
import org.jetbrains.annotations.Nullable;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
class A {
|
|
@Nullable
|
|
public Object methodFromA(@NotNull String s) {
|
|
return null;
|
|
}
|
|
}
|