mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-08 12:36:52 +07:00
12 lines
222 B
Java
12 lines
222 B
Java
// "Replace with 'getRemovals().forEach(source::remove)'" "true"
|
|
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
native List<String> getRemovals();
|
|
|
|
void foo(Set<Integer> source) {
|
|
source.removeAll<caret>(getRemovals());
|
|
}
|
|
}
|