> + return name;
> + }
> +
> + /**
> + * @return The description of the Security Group.
> + */
> + @Nullable
> + public String getDescription() {
> + return description;
> + }
> +
> + /**
> + * @return The collection of rules for this Security Group.
> + */
> + public ImmutableList<Rule> getRules() {
> + return rules!=null ? rules : ImmutableList.<Rule>of();
[minor] Spaces around `!=`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/132/files#r16929836