mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 09:22:02 +07:00
GitOrigin-RevId: e54db7c5b175b264ac37c28a0cdab8ffd194c93f
11 lines
212 B
Plaintext
11 lines
212 B
Plaintext
|
|
class Test {
|
|
|
|
boolean use(String s) {
|
|
String s1 = s + s;
|
|
if (s1 == null) return true;
|
|
s1 = s1.trim();
|
|
if (s1.isEmpty()) return true;
|
|
return s1.length() % 2 != 0;
|
|
}
|
|
} |