in src/main/java/com/amazonaws/services/simpleworkflow/flow/worker/ExponentialRetryParameters.java [99:120]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ExponentialRetryParameters other = (ExponentialRetryParameters) obj;
if (Double.doubleToLongBits(backoffCoefficient) != Double.doubleToLongBits(other.backoffCoefficient))
return false;
if (expirationInterval != other.expirationInterval)
return false;
if (initialInterval != other.initialInterval)
return false;
if (maximumRetries != other.maximumRetries)
return false;
if (maximumRetryInterval != other.maximumRetryInterval)
return false;
if (minimumRetries != other.minimumRetries)
return false;
return true;
}