> @@ -467,6 +489,13 @@ public static NovaTemplateOptions
> novaNetworks(Set<Network> novaNetworks) {
> NovaTemplateOptions options = new NovaTemplateOptions();
> return
> NovaTemplateOptions.class.cast(options.novaNetworks(novaNetworks));
> }
> +
> + /**
> + * @see NovaTemplateOptions#getAvailabilityZone()
> + */
> + public static NovaTemplateOptions availabilityZone(String
> availabilityZone) {
> + return new NovaTemplateOptions().availabilityZone(availabilityZone);
> I definitely prefer this style over:
I'd agree with you, but can we start by making this commit consistent with all
the other usages of the old pattern in this class, then changing that pattern
(in a different commit or even PR) for all of them?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/519/files#r17559324