public boolean equals()

in metrics/src/main/java/com/facebook/battery/metrics/appwakeup/AppWakeupMetrics.java [189:198]


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

      WakeupDetails that = (WakeupDetails) o;

      if (count != that.count) return false;
      if (wakeupTimeMs != that.wakeupTimeMs) return false;
      return reason == that.reason;
    }