> + Objects.equal(this.groupConfiguration, that.groupConfiguration)
> &&
> + Objects.equal(this.launchConfiguration,
> that.launchConfiguration);
> + }
> +
> + protected ToStringHelper string() {
> + return Objects.toStringHelper(this)
> + .add("id", id)
> + .add("links", links)
> + .add("scalingPolicy", scalingPolicy)
> + .add("groupConfiguration", groupConfiguration)
> + .add("launchConfiguration", "launchConfiguration");
> + }
> +
> + @Override
> + public String toString() {
> + return string().toString();
Any reason for this indirection, here and elsewhere?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/22/files#r6095383