Change to Definitive generic signature for Publishers.zip

This commit is contained in:
Stephane Maldini 2015-12-01 16:51:52 +00:00
parent 9ce5c7416b
commit b9a52d5f7c
1 changed files with 1 additions and 1 deletions

View File

@ -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 -> {