mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 20:49:52 +07:00
10 lines
302 B
Java
10 lines
302 B
Java
// "Replace 'collect(summingInt())' with 'mapToInt().sum()'" "true"
|
|
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
|
|
public class Main {
|
|
public void remove(List<Integer> ints, List<String> data) {
|
|
ints.remove(data.stream().collect(Collectors<caret>.summingInt(String::length)));
|
|
}
|
|
} |