> +   @Override
> +   public int hashCode() {
> +      return Objects.hashCode(name, zoneState);
> +   }
> +
> +   @Override
> +   public boolean equals(Object obj) {
> +      if (this != obj) return false;
> +      if (obj == null || getClass() != obj.getClass()) return false;
> +      AvailabilityZone that = AvailabilityZone.class.cast(obj);
> +      return Objects.equal(this.name, that.name) && 
> Objects.equal(this.zoneState, that.zoneState);
> +   }
> +
> +   protected Objects.ToStringHelper string() {
> +      return Objects.toStringHelper(this)
> +            .add("zoneName", name)

fixed

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

Reply via email to