blob: 5a89e47550add8504edcfc2d08db216597f2255a [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
class Test {
@NotNull
public String noNull( @Nullable String text) {
return text == null ? "" : text;
}
}