Files
2020-12-21 10:44:41 +00:00

8 lines
144 B
Java

class X{
boolean test(String s1, String s2) {
return s1 == null || (s2.equals(s1.trim()) && <selection>s1.isEmpty()</selection>);
}
}