The following document contains the results of PMD's CPD 4.2.5.
| File | Line |
|---|---|
| org/jclouds/deltacloud/domain/HardwareProfile.java | 100 |
| org/jclouds/deltacloud/domain/Image.java | 135 |
if (href == null) {
if (other.href != null)
return false;
} else if (!href.equals(other.href))
return false;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
if (name == null) {
if (other.name != null)
return false;
} else if (!name.equals(other.name))
return false;
if (ownerId == null) { | |