> + */
> + public T summary(String summary) {
> + this.summary = summary;
> + return self();
> + }
> +
> + /**
> + * @see VirtualGuestBlockDeviceTemplateGroup#getChildren()
> + */
> + public T children(Set<VirtualGuestBlockDeviceTemplateGroup> children) {
> + this.children = ImmutableSet.copyOf(checkNotNull(children,
> "children"));
> + return self();
> + }
> +
> + public T children(VirtualGuestBlockDeviceTemplateGroup... in) {
> + return children(ImmutableSet.copyOf(in));
Also check for the `null` input here?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r10452263