Files
rr3-apk/decompiled-community/sources/com/google/firebase/heartbeatinfo/AutoValue_HeartBeatResult.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

50 lines
1.5 KiB
Java

package com.google.firebase.heartbeatinfo;
import java.util.List;
/* loaded from: classes3.dex */
public final class AutoValue_HeartBeatResult extends HeartBeatResult {
public final List usedDates;
public final String userAgent;
@Override // com.google.firebase.heartbeatinfo.HeartBeatResult
public List getUsedDates() {
return this.usedDates;
}
@Override // com.google.firebase.heartbeatinfo.HeartBeatResult
public String getUserAgent() {
return this.userAgent;
}
public AutoValue_HeartBeatResult(String str, List list) {
if (str == null) {
throw new NullPointerException("Null userAgent");
}
this.userAgent = str;
if (list == null) {
throw new NullPointerException("Null usedDates");
}
this.usedDates = list;
}
public String toString() {
return "HeartBeatResult{userAgent=" + this.userAgent + ", usedDates=" + this.usedDates + "}";
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof HeartBeatResult)) {
return false;
}
HeartBeatResult heartBeatResult = (HeartBeatResult) obj;
return this.userAgent.equals(heartBeatResult.getUserAgent()) && this.usedDates.equals(heartBeatResult.getUsedDates());
}
public int hashCode() {
return ((this.userAgent.hashCode() ^ 1000003) * 1000003) ^ this.usedDates.hashCode();
}
}