Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/wrapAdapterCall/afterSet.java
Bas Leijdekkers 223eeb0b0f WrapWithAdapterMethodCallFix: wrap with List.of() instead of Arrays.asList() on Java 9 and higher (IDEA-269380)
GitOrigin-RevId: f39f5c58348afb6b3c57dbc059860f940c6ec363
2021-05-19 10:44:07 +00:00

14 lines
212 B
Java

// "Wrap 1st argument using 'Collections.singleton()'" "true"
import java.util.*;
class Test {
void method(Set<Long> set, double val) {
}
void m(long l) {
method(Collections.singleton(l), l);
}
}