mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 13:43:29 +07:00
13 lines
207 B
Java
13 lines
207 B
Java
import org.jetbrains.annotations.*;
|
|
|
|
class Test {
|
|
public @Nullable String foo;
|
|
|
|
public void test() {
|
|
|
|
if (foo != null && foo.length() > 1) {
|
|
System.out.println(foo.length());
|
|
}
|
|
}
|
|
}
|