Skip to content

Commit 73874c8

Browse files
committed
Update WebServiceProxy.
1 parent f259a15 commit 73874c8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

kilo-client/src/main/java/org/httprpc/kilo/WebServiceProxy.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
import java.util.UUID;
5858

5959
import static org.httprpc.kilo.util.Collections.*;
60+
import static org.httprpc.kilo.util.Iterables.*;
6061
import static org.httprpc.kilo.util.Optionals.*;
6162

6263
/**
@@ -902,7 +903,7 @@ private static List<Object> getParameterValues(Object argument) {
902903

903904
return list;
904905
} else if (argument instanceof Collection<?> collection) {
905-
return listOf(map(collection, WebServiceProxy::getParameterValue));
906+
return listOf(mapAll(collection, WebServiceProxy::getParameterValue));
906907
} else {
907908
return listOf(getParameterValue(argument));
908909
}

0 commit comments

Comments
 (0)