> +      return new 
> AutoValue_CreateStack.Builder().disableRollback(true).files(null).environment(null);
> +   }
> +
> +   public Builder toBuilder() {
> +      return builder()
> +            .name(getName())
> +            .template(getTemplate())
> +            .templateUrl(getTemplateUrl())
> +            .parameters(getParameters())
> +            .disableRollback(isDisableRollback())
> +            .files(getFiles())
> +            .environment(getEnvironment());
> +   }
> +
> +   @SerializedNames({"stack_name", "template", "template_url", "parameters", 
> "disable_rollback", "files", "environment" })
> +   private static CreateStack create(String name, @Nullable String template, 
> @Nullable String templateUrl, @Nullable Map<String, Object> parameters, 
> boolean disableRollback, @Nullable Map<String, String> files, @Nullable 
> String environment) {

It shouldn't be. I removed the nullable

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/188/files#r28665295

Reply via email to