> @@ -238,6 +242,16 @@ public void deleteAllClientsInList(Iterable<String>
> names) {
> }
>
> @Override
> + public Iterable<? extends CookbookVersion>
> listCookbookVersionsInEnvironment(String environmentName) {
> + return listCookbookVersionsInEnvironment.execute(environmentName);
> + }
> +
> + @Override
> + public Iterable<? extends CookbookVersion>
> listCookbookVersionsInEnvironment(String environmentName, String numVersions)
> {
> + return listCookbookVersionsInEnvironment.execute(environmentName,
> numVersions);
Use numeric type rather than String for `numVersions`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-chef/pull/32/files#r7279880