mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 16:19:35 +07:00
223eeb0b0f
GitOrigin-RevId: f39f5c58348afb6b3c57dbc059860f940c6ec363
14 lines
212 B
Java
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);
|
|
}
|
|
|
|
} |