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