mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
10 lines
214 B
Java
10 lines
214 B
Java
// "Merge with previous 'map' call" "true"
|
|
|
|
import java.util.List;
|
|
|
|
public class Test {
|
|
public boolean test(List<String> list) {
|
|
/* ditto boolean!*/
|
|
return list.stream().anyMatch(String::isEmpty);
|
|
}
|
|
} |