mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
14 lines
253 B
Java
14 lines
253 B
Java
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class X {
|
|
void test(@NotNull String string) {
|
|
string = getString();
|
|
if (string == null) {
|
|
}
|
|
}
|
|
@Nullable
|
|
String getString() {
|
|
return null;
|
|
}
|
|
} |