in metrics/src/main/java/com/facebook/battery/metrics/network/NetworkMetrics.java [74:88]
public boolean equals(@Nullable Object other) {
if (this == other) {
return true;
}
if (other == null || getClass() != other.getClass()) {
return false;
}
NetworkMetrics that = (NetworkMetrics) other;
return mobileBytesTx == that.mobileBytesTx
&& mobileBytesRx == that.mobileBytesRx
&& wifiBytesTx == that.wifiBytesTx
&& wifiBytesRx == that.wifiBytesRx;
}