Files
rr3-apk/decompiled/sources/com/google/android/gms/internal/ads/zzeay.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

70 lines
2.0 KiB
Java

package com.google.android.gms.internal.ads;
import android.graphics.drawable.Drawable;
import androidx.annotation.Nullable;
/* loaded from: classes3.dex */
final class zzeay extends zzebc {
@Nullable
private final String zza;
private final String zzb;
@Nullable
private final Drawable zzc;
public zzeay(@Nullable String str, String str2, @Nullable Drawable drawable) {
this.zza = str;
if (str2 == null) {
throw new NullPointerException("Null imageUrl");
}
this.zzb = str2;
this.zzc = drawable;
}
public final boolean equals(Object obj) {
Drawable drawable;
if (obj == this) {
return true;
}
if (obj instanceof zzebc) {
zzebc zzebcVar = (zzebc) obj;
String str = this.zza;
if (str != null ? str.equals(zzebcVar.zzb()) : zzebcVar.zzb() == null) {
if (this.zzb.equals(zzebcVar.zzc()) && ((drawable = this.zzc) != null ? drawable.equals(zzebcVar.zza()) : zzebcVar.zza() == null)) {
return true;
}
}
}
return false;
}
public final int hashCode() {
String str = this.zza;
int hashCode = (((str == null ? 0 : str.hashCode()) ^ 1000003) * 1000003) ^ this.zzb.hashCode();
Drawable drawable = this.zzc;
return (hashCode * 1000003) ^ (drawable != null ? drawable.hashCode() : 0);
}
public final String toString() {
return "OfflineAdAssets{advertiserName=" + this.zza + ", imageUrl=" + this.zzb + ", icon=" + String.valueOf(this.zzc) + "}";
}
@Override // com.google.android.gms.internal.ads.zzebc
@Nullable
public final Drawable zza() {
return this.zzc;
}
@Override // com.google.android.gms.internal.ads.zzebc
@Nullable
public final String zzb() {
return this.zza;
}
@Override // com.google.android.gms.internal.ads.zzebc
public final String zzc() {
return this.zzb;
}
}