in cloudsigma2/src/main/java/org/jclouds/cloudsigma2/domain/ServerRuntime.java [68:87]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (!super.equals(obj))
return false;
if (getClass() != obj.getClass())
return false;
ServerRuntime other = (ServerRuntime) obj;
if (nicStats == null) {
if (other.nicStats != null)
return false;
} else if (!nicStats.equals(other.nicStats))
return false;
if (activeSince == null) {
if (other.activeSince != null)
return false;
} else if (!activeSince.equals(other.activeSince))
return false;
return true;
}