mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
16 lines
359 B
Java
16 lines
359 B
Java
// "Replace with anyMatch()" "true"
|
|
|
|
import java.util.List;
|
|
|
|
public class Main {
|
|
public void testAssignment(List<String> data) {
|
|
boolean found = false;
|
|
try {
|
|
found = data.stream().map(String::trim).anyMatch(trimmed -> !trimmed.isEmpty());
|
|
}
|
|
catch(Exception ex) {
|
|
ex.printStackTrace();
|
|
}
|
|
System.out.println(found);
|
|
}
|
|
} |