Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/slowAbstractSetRemoveAll/beforeCollection.java
Andrey.Cherkasov 95a12db895 IDEA-253512: Fixes after review
GitOrigin-RevId: 0c9d42259d6a5169c449b536aa4e7b982446b10a
2020-11-30 15:12:44 +00:00

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());
}
}