in sdk/appcenter-crashes/src/main/java/com/microsoft/appcenter/crashes/ingestion/models/ErrorAttachmentLog.java [237:262]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
ErrorAttachmentLog that = (ErrorAttachmentLog) o;
if (id != null ? !id.equals(that.id) : that.id != null) {
return false;
}
if (errorId != null ? !errorId.equals(that.errorId) : that.errorId != null) {
return false;
}
if (contentType != null ? !contentType.equals(that.contentType) : that.contentType != null) {
return false;
}
if (fileName != null ? !fileName.equals(that.fileName) : that.fileName != null) {
return false;
}
return Arrays.equals(data, that.data);
}