Files
rr3-apk/decompiled-community/sources/com/google/android/gms/internal/ads/zzags.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

77 lines
2.5 KiB
Java

package com.google.android.gms.internal.ads;
import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.Nullable;
import com.ironsource.mediationsdk.logger.IronSourceError;
import java.util.Objects;
/* loaded from: classes3.dex */
public final class zzags extends zzagh {
public static final Parcelable.Creator<zzags> CREATOR = new zzagr();
@Nullable
public final String zza;
public final String zzb;
/* JADX WARN: Illegal instructions before constructor call */
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public zzags(android.os.Parcel r3) {
/*
r2 = this;
java.lang.String r0 = r3.readString()
int r1 = com.google.android.gms.internal.ads.zzei.zza
r2.<init>(r0)
java.lang.String r0 = r3.readString()
r2.zza = r0
java.lang.String r3 = r3.readString()
r2.zzb = r3
return
*/
throw new UnsupportedOperationException("Method not decompiled: com.google.android.gms.internal.ads.zzags.<init>(android.os.Parcel):void");
}
public final boolean equals(@Nullable Object obj) {
if (this == obj) {
return true;
}
if (obj != null && zzags.class == obj.getClass()) {
zzags zzagsVar = (zzags) obj;
if (this.zzf.equals(zzagsVar.zzf) && Objects.equals(this.zza, zzagsVar.zza) && Objects.equals(this.zzb, zzagsVar.zzb)) {
return true;
}
}
return false;
}
public final int hashCode() {
int hashCode = this.zzf.hashCode() + IronSourceError.ERROR_NON_EXISTENT_INSTANCE;
String str = this.zza;
int hashCode2 = str != null ? str.hashCode() : 0;
int i = hashCode * 31;
String str2 = this.zzb;
return ((i + hashCode2) * 31) + (str2 != null ? str2.hashCode() : 0);
}
@Override // com.google.android.gms.internal.ads.zzagh
public final String toString() {
return this.zzf + ": url=" + this.zzb;
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.zzf);
parcel.writeString(this.zza);
parcel.writeString(this.zzb);
}
public zzags(String str, @Nullable String str2, String str3) {
super(str);
this.zza = str2;
this.zzb = str3;
}
}