mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
18 lines
454 B
Java
18 lines
454 B
Java
import org.jetbrains.annotations.Contract;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Foo {
|
|
@Contract("!null,true->!null")
|
|
String delegationToInstance(@NotNull Foo f, boolean createIfNeeded) {
|
|
return f.getString(createIfNeeded); // not smart enough to check this
|
|
}
|
|
|
|
@Contract("true->fail")
|
|
String getString(boolean fail) {
|
|
if (fail) throw new RuntimeException();
|
|
return "a";
|
|
}
|
|
|
|
}
|