compiler issue ?

This commit is contained in:
Stephane Maldini 2015-12-01 15:01:05 +00:00
parent 71d1d11fac
commit 9ce5c7416b
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.zip(argPublishers, this::unwrapOptionalArgValues) :
Publishers.<Tuple, Object[]>zip(argPublishers, this::unwrapOptionalArgValues) :
Publishers.just(new Object[0]));
return Publishers.map(argValues, args -> {