Change to Definitive generic signature for Publishers.zip
This commit is contained in:
parent
9ce5c7416b
commit
b9a52d5f7c
|
|
@ -63,7 +63,7 @@ public class InvocableHandlerMethod extends HandlerMethod {
|
|||
List<Publisher<Object>> argPublishers = getMethodArguments(request, providedArgs);
|
||||
|
||||
Publisher<Object[]> argValues = (!argPublishers.isEmpty() ?
|
||||
Publishers.<Tuple, Object[]>zip(argPublishers, this::unwrapOptionalArgValues) :
|
||||
Publishers.zip(argPublishers, this::unwrapOptionalArgValues) :
|
||||
Publishers.just(new Object[0]));
|
||||
|
||||
return Publishers.map(argValues, args -> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue