mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
11 lines
190 B
Java
11 lines
190 B
Java
class X{
|
|
|
|
boolean test(String s1, String s2) {
|
|
if (s1 == null) return true;
|
|
if (!s2.equals(s1.trim())) return false;
|
|
boolean foo = s1.isEmpty();
|
|
return foo;
|
|
}
|
|
|
|
}
|