in sdk/appcenter/src/main/java/com/microsoft/appcenter/ingestion/models/AbstractLog.java [196:211]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
AbstractLog that = (AbstractLog) o;
if (!transmissionTargetTokens.equals(that.transmissionTargetTokens)) return false;
if (timestamp != null ? !timestamp.equals(that.timestamp) : that.timestamp != null)
return false;
if (sid != null ? !sid.equals(that.sid) : that.sid != null) return false;
if (distributionGroupId != null ? !distributionGroupId.equals(that.distributionGroupId) : that.distributionGroupId != null)
return false;
if (userId != null ? !userId.equals(that.userId) : that.userId != null) return false;
if (device != null ? !device.equals(that.device) : that.device != null) return false;
return tag != null ? tag.equals(that.tag) : that.tag == null;
}