public boolean equals()

in metrics/src/main/java/com/facebook/battery/metrics/network/RadioStateMetrics.java [69:84]


  public boolean equals(@Nullable Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }

    RadioStateMetrics that = (RadioStateMetrics) o;

    return mobileLowPowerActiveS == that.mobileLowPowerActiveS
        && mobileHighPowerActiveS == that.mobileHighPowerActiveS
        && mobileRadioWakeupCount == that.mobileRadioWakeupCount
        && wifiActiveS == that.wifiActiveS
        && wifiRadioWakeupCount == that.wifiRadioWakeupCount;
  }