in src/main/java/com/amazonaws/services/cloudtrail/processinglibrary/progress/ProgressStatus.java [108:124]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
ProgressStatus other = (ProgressStatus) obj;
if (progressState != other.progressState)
return false;
if (progressInfo == null) {
if (other.progressInfo != null)
return false;
} else if (!progressInfo.equals(other.progressInfo))
return false;
return true;
}