>
> public CreateStack build() {
> - CreateStack result = new AutoValue_CreateStack(
> - this.name,
> - this.template,
> - this.templateUrl,
> - this.parameters != null ?
> ImmutableMap.copyOf(this.parameters) : null,
> - this.disableRollback,
> - this.files != null ? ImmutableMap.copyOf(this.files) : null,
> - this.environment);
> - return result;
> + parameters(getParameters() != null ?
> ImmutableMap.copyOf(getParameters()) : null);
> + files(getFiles() != null ? ImmutableMap.copyOf(getFiles()) : null);
> + return autoBuild();
This auto builder stuff is super awesome! :D Great stuff!
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/193/files#r32463536