> +      public Builder addMethod(String method) {
> +         this.methods.add(method);
> +         return this;
> +      }
> +
> +      public Builder method(Set<String> method) {
> +         this.methods.addAll(method);
> +         return this;
> +      }
> +
> +      public Builder addResponseHeader(String responseHeader) {
> +         this.reponseHeaders.add(responseHeader);
> +         return this;
> +      }
> +
> +      public Builder responseHeader(Set<String> responseHeader) {

Should this be `responseHeaders` (both the method and the variable name)?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14532681

Reply via email to