mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
10 lines
211 B
Java
10 lines
211 B
Java
// "Replace with 'removals.forEach(source::remove)'" "false"
|
|
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
void foo(Set<Integer> source, List<Integer> removals) {
|
|
boolean b = source.removeAll<caret>(removals);
|
|
}
|
|
}
|