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