> +      public Builder checksum(byte[] checksum) {
> +         this.checksum = checkNotNull(checksum, "checksum");
> +         return this;
> +      }
> +
> +      public Builder path(String path) {
> +         this.path = checkNotNull(path, "path");
> +         return this;
> +      }
> +
> +      public Builder specificity(String specificity) {
> +         this.specificity = checkNotNull(specificity, "specificity");
> +         return this;
> +      }
> +
> +      public Builder fromPayload(FilePayload payload) {

`checkNotNull(payload)`?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-chef/pull/10/files#r6039939

Reply via email to