> return false;
> - return Objects.equal(this.toString(), that.toString());
> + if (!(obj instanceof Node)) {
> + return false;
> + }
> + Node that = (Node) obj;
> + return Objects.equal(this.id, that.id)Correct. Note that some tests actually fail when I included `credential` and `credentialUrl`. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/498/files#r16815649
