> +         Iterables.addAll(this.cidrBlocks, cidrBlocks);
> +         return this;
> +      }
> +
> +      /**
> +       * @see IpPermission#getPorts()
> +       */
> +      public Builder addPort(Integer port) {
> +         this.ports.add(singleton(checkNotNull(port, "port")));
> +         return this;
> +      }
> +
> +      /**
> +       * @see IpPermission#getPorts()
> +       */
> +      public Builder addPortRange(Integer start, Integer end) {

same here

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

Reply via email to