> + @Override
> + public boolean equals(Object obj) {
> + if (this == obj) return true;
> + if (obj == null || getClass() != obj.getClass()) return false;
> + Project that = Project.class.cast(obj);
> + return Objects.equal(this.id, that.id)
> + && Objects.equal(this.account, that.account)
> + && Objects.equal(this.displayText, that.displayText)
> + && Objects.equal(this.domain, that.domain)
> + && Objects.equal(this.domainId, that.domainId)
> + && Objects.equal(this.name, that.name)
> + && Objects.equal(this.state, that.state);
> + }
> +
> + protected ToStringHelper string() {
> + return Objects.toStringHelper(this)
Aaaaaah. Gotcha. Lemme clean that up. I got confused.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/215/files#r7931719