public boolean equals()

in src/main/java/com/amazonaws/services/cloudtrail/processinglibrary/model/internal/CloudTrailDataStore.java [94:108]


    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        CloudTrailDataStore other = (CloudTrailDataStore) obj;
        if (dataStore == null) {
            if (other.dataStore != null)
                return false;
        } else if (!dataStore.equals(other.dataStore))
            return false;
        return true;
    }