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

8 lines
135 B
Java

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