mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 13:07:01 +07:00
10 lines
241 B
Plaintext
10 lines
241 B
Plaintext
import java.util.List;
|
|
|
|
public class X {
|
|
boolean test(List<String> list) {
|
|
return list.stream().anyMatch(s -> {
|
|
<spot>String lower = s.toLowerCase();</spot>
|
|
return lower.equals("test");
|
|
});
|
|
}
|
|
} |