> +         this.groups.addAll(checkNotNull(groups, "groups"));
> +         return this;
> +      }
> +
> +      public Builder user(String user) {
> +         this.users.add(checkNotNull(user, "user"));
> +         return this;
> +      }
> +
> +      public Builder users(Iterable<String> users) {
> +         this.users.addAll(checkNotNull(users, "users"));
> +         return this;
> +      }
> +
> +      public Group build() {
> +         return new Group(name, checkNotNull(groupname, "groupame"), 
> orgname, actors.build(), clients.build(), groups.build(), users.build());

Typo ("groupame"). Make `groupname` a required constructor property of the 
Builder?

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

Reply via email to