src/main/java/com/amazonaws/services/cloudtrail/processinglibrary/model/CloudTrailEvent.java [90:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return result;
    }

    /**
     * Compares this <code>CloudTrailEvent</code> object with another.
     *
     * @return <code>true</code> if they represent the same event;
     *   <code>false</code> * otherwise.
     */
    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/cloudtrail/processinglibrary/progress/ProgressStatus.java [99:114]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return result;
    }

    /**
     * Compares this object with another {@link ProgressStatus} object.
     *
     * @return <code>true</code> if the objects are equal. Otherwise, <code>false</code>.
     */
    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



