in src/main/java/com/amazonaws/services/simpleworkflow/flow/worker/DecisionId.java [38:55]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
DecisionId other = (DecisionId) obj;
if (decisionTarget != other.decisionTarget)
return false;
if (id == null) {
if (other.id != null)
return false;
}
else if (!id.equals(other.id))
return false;
return true;
}