There was an error while loading. Please reload this page.
1 parent f259a15 commit 73874c8Copy full SHA for 73874c8
1 file changed
kilo-client/src/main/java/org/httprpc/kilo/WebServiceProxy.java
@@ -57,6 +57,7 @@
57
import java.util.UUID;
58
59
import static org.httprpc.kilo.util.Collections.*;
60
+import static org.httprpc.kilo.util.Iterables.*;
61
import static org.httprpc.kilo.util.Optionals.*;
62
63
/**
@@ -902,7 +903,7 @@ private static List<Object> getParameterValues(Object argument) {
902
903
904
return list;
905
} else if (argument instanceof Collection<?> collection) {
- return listOf(map(collection, WebServiceProxy::getParameterValue));
906
+ return listOf(mapAll(collection, WebServiceProxy::getParameterValue));
907
} else {
908
return listOf(getParameterValue(argument));
909
}
0 commit comments