> 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)I'm guessing the elements listed are also those included in the `toString`? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/498/files#r16813220
