- 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
50 lines
1.5 KiB
Java
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();
|
|
}
|
|
}
|