> + public static class Builder {
> + private URI url;
> + private boolean needsUpload;
> +
> + 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);
Will this work if `url` is null?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-chef/pull/10/files#r6039700