> + }
> + Image other = (Image) obj;
> + if (id != other.id) {
> + return false;
> + }
> + if (name == null) {
> + if (other.name != null) {
> + return false;
> + }
> + } else if (!name.equals(other.name)) {
> + return false;
> + }
> + if (os == null) {
> + if (other.os != null) {
> + return false;
> + }OS and name can't be null --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/49/files#r9165703
