> this.api = checkNotNull(api, "api");
> }
>
> @Override
> public Iterable<? extends Client> execute() {
> - return execute(userExecutor);
> +
> + Iterable<String> toGet = api.listClients();
> + Iterable<? extends Client> clients = transform(toGet,
> + new Function<String, Client>() {
> + @Override
> + public Client apply(final String input) {
> +[minor] Remove blank line? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-chef/pull/47/files#r15464479
