> + }
> +
> + public T children(VirtualGuestBlockDeviceTemplateGroup... in) {
> + return children(ImmutableSet.copyOf(in));
> + }
> +
> + /**
> + * @see
> org.jclouds.softlayer.domain.VirtualGuestBlockDeviceTemplateGroup#getBlockDevices()
> + */
> + public T blockDevices(Set<VirtualGuestBlockDeviceTemplate>
> blockDevices) {
> + this.blockDevices = ImmutableSet.copyOf(checkNotNull(blockDevices,
> "blockDevices"));
> + return self();
> + }
> +
> + public T blockDevices(VirtualGuestBlockDeviceTemplate... in) {
> + return blockDevices(ImmutableSet.copyOf(in));
Null check here too
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r10452274