> + this.templateUrl = templateUrl;
> + return this;
> + }
> +
> + /**
> + * @see UpdateStack#getParameters()
> + */
> + public Builder parameters(Map<String, Object> parameters) {
> + this.parameters = parameters;
> + return this;
> + }
> +
> + public UpdateStack build() {
> + UpdateStack result = new AutoValue_UpdateStack(
> + this.template != null ? template : null,
> + this.templateUrl != null ? templateUrl : null,
Remove the redundant null checks.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/188/files#r28424471