mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 06:18:32 +07:00
GitOrigin-RevId: ba90756f95ac11fab4c9b0712a59747e00f09ed2
13 lines
282 B
Java
13 lines
282 B
Java
import org.jetbrains.annotations.*;
|
|
|
|
public class GetterNullityAfterCheck {
|
|
public String testGetter() {
|
|
String something = getSomething();
|
|
if (something != null) {
|
|
return getSomething().trim();
|
|
}
|
|
return "";
|
|
}
|
|
|
|
native @Nullable String getSomething();
|
|
} |