> +
> + public Builder url(URI url) {
> + this.url = checkNotNull(url, "url");
> + return this;
> + }
> +
> + public Builder needsUpload(boolean needsUpload) {
> + this.needsUpload = needsUpload;
> + return this;
> + }
> +
> + public ChecksumStatus build() {
> + return new ChecksumStatus(url, needsUpload);
> + }
> + }
> +
> private URI url;
> @SerializedName("needs_upload")
> private boolean needsUpload;
Make both of these `final`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-chef/pull/10/files#r6039715