in api/src/main/java/com/google/appengine/api/taskqueue/RetryOptions.java [162:209]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
RetryOptions other = (RetryOptions) obj;
if (taskRetryLimit == null) {
if (other.taskRetryLimit != null) {
return false;
}
} else if (!taskRetryLimit.equals(other.taskRetryLimit)) {
return false;
}
if (taskAgeLimitSeconds == null) {
if (other.taskAgeLimitSeconds != null) {
return false;
}
} else if (!taskAgeLimitSeconds.equals(other.taskAgeLimitSeconds)) {
return false;
}
if (minBackoffSeconds == null) {
if (other.minBackoffSeconds != null) {
return false;
}
} else if (!minBackoffSeconds.equals(other.minBackoffSeconds)) {
return false;
}
if (maxBackoffSeconds == null) {
if (other.maxBackoffSeconds != null) {
return false;
}
} else if (!maxBackoffSeconds.equals(other.maxBackoffSeconds)) {
return false;
}
if (maxDoublings == null) {
if (other.maxDoublings != null) {
return false;
}
} else if (!maxDoublings.equals(other.maxDoublings)) {
return false;
}
return true;
}