> + public int hashCode() {
> + return Objects.hashCode(entity, entityId);
> + }
> +
> + @Override
> + public boolean equals(Object obj) {
> + if (this == obj)
> + return true;
> + if (obj == null || getClass() != obj.getClass())
> + return false;
> + Owner that = Owner.class.cast(obj);
> + return equal(this.entity, that.entity);
> + }
> +
> + protected Objects.ToStringHelper string() {
> + return toStringHelper(this).omitNullValues().add("entiy",
> entity).add("entityId", entityId);
Typo: `entity`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14532799