mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 1239c130bdc0a2a0e9ae5a335d8ae342995c6475
13 lines
288 B
Java
13 lines
288 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class Infer {
|
|
static public boolean a(@NotNull String s) {
|
|
try {
|
|
return s.length() > 0;
|
|
} catch (final NullPointerException e) {
|
|
e.printStackTrace();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
} |