Files
2021-10-06 19:14:50 +00:00

13 lines
273 B
Java

import org.jetbrains.annotations.*;
public class Infer {
static public boolean a(String s) {
try {
return s.length() > 0;
} catch (final NullPointerException e) {
e.printStackTrace();
return false;
}
}
}