mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
282 B
Java
13 lines
282 B
Java
import org.jetbrains.annotations.*;
|
|
|
|
public class Infer {
|
|
static public boolean a(@NotNull String s) {
|
|
try {
|
|
return s.length() > 0;
|
|
} catch (final NullPointerException e) {
|
|
e.printStackTrace();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
} |