> @@ -64,8 +64,6 @@ public boolean equals(Object obj) {
> if (getClass() != obj.getClass())
> return false;
> SCSIDevice other = (SCSIDevice) obj;
> - if (bus != other.bus)
> - return false;
Ah, I guess because there's no setter or other way to change the value, so it's
effectively hard-coded. I suspect that may have been a bug, and that the
builder should probably allow `bus` to be set, even if that's never used in the
code..?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/140/files#r6173080