in library/src/main/java/com/theguardian/bridget/thrift/Metrics.java [467:483]
public boolean equals(sendMetrics_args that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_metrics = true && this.isSetMetrics();
boolean that_present_metrics = true && that.isSetMetrics();
if (this_present_metrics || that_present_metrics) {
if (!(this_present_metrics && that_present_metrics))
return false;
if (!this.metrics.equals(that.metrics))
return false;
}
return true;
}