> + @Nullable
> + public SoftwareDescription getSoftwareDescription() {
> + return this.softwareDescription;
> + }
> +
> + @Override
> + public int hashCode() {
> + return Objects.hashCode(id);
> + }
> +
> + @Override
> + public boolean equals(Object obj) {
> + if (this == obj) return true;
> + if (obj == null || getClass() != obj.getClass()) return false;
> + VirtualDiskImageSoftware that =
> VirtualDiskImageSoftware.class.cast(obj);
> + return Objects.equal(this.id, that.id);
not really. Thanks for spotting that
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r11151800