> + return string().toString();
> + }
> +
> + public static Builder builder() {
> + return new Builder();
> + }
> +
> + public static class Builder {
> + ImmutableSet.Builder<Rule> rules = ImmutableSet.builder();
> +
> + public Builder addRule(Rule rule) {
> + this.rules.add(rule);
> + return this;
> + }
> +
> + public Builder rule(Set<Rule> rule) {
`rules` (variable and method name)?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14532730