> @@ -84,8 +85,12 @@ protected Properties setupProperties() {
> }
>
> protected Server createServerInZone(String zoneId) {
> + return createServerInZone(zoneId, null);
@demobox What about a single method with varargs?
```
protected Server createServerInZone(String zoneId,
CreateServerOptions...options) {
...
}
```
I'm fine with any of the above and the varargs version is cleanest but I'm not
sure if that is acceptable. I might push this version up but I can always
change it if necessary.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/392/files#r13768377