Files
2025-07-11 17:16:17 +00:00

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;
}
}
}