Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantCollectionOperation/beforePutAllMapOf.java
2021-09-08 11:33:16 +00:00

8 lines
153 B
Java

// "Replace with 'put()'" "true"
import java.util.*;
class Test {
void test(Map<Integer, String> map) {
map.put<caret>All(Map.of(1, "one"));
}
}