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

73 lines
1.9 KiB
Java

package com.google.android.gms.internal.auth;
import com.ironsource.v8;
import java.util.Map;
/* loaded from: classes3.dex */
final class zzgp implements Map.Entry, Comparable {
final /* synthetic */ zzgv zza;
private final Comparable zzb;
private Object zzc;
public zzgp(zzgv zzgvVar, Comparable comparable, Object obj) {
this.zza = zzgvVar;
this.zzb = comparable;
this.zzc = obj;
}
private static final boolean zzb(Object obj, Object obj2) {
return obj == null ? obj2 == null : obj.equals(obj2);
}
@Override // java.lang.Comparable
public final /* bridge */ /* synthetic */ int compareTo(Object obj) {
return this.zzb.compareTo(((zzgp) obj).zzb);
}
@Override // java.util.Map.Entry
public final boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof Map.Entry)) {
return false;
}
Map.Entry entry = (Map.Entry) obj;
return zzb(this.zzb, entry.getKey()) && zzb(this.zzc, entry.getValue());
}
@Override // java.util.Map.Entry
public final /* synthetic */ Object getKey() {
return this.zzb;
}
@Override // java.util.Map.Entry
public final Object getValue() {
return this.zzc;
}
@Override // java.util.Map.Entry
public final int hashCode() {
Comparable comparable = this.zzb;
int hashCode = comparable == null ? 0 : comparable.hashCode();
Object obj = this.zzc;
return hashCode ^ (obj != null ? obj.hashCode() : 0);
}
@Override // java.util.Map.Entry
public final Object setValue(Object obj) {
this.zza.zzn();
Object obj2 = this.zzc;
this.zzc = obj;
return obj2;
}
public final String toString() {
return String.valueOf(this.zzb) + v8.i.b + String.valueOf(this.zzc);
}
public final Comparable zza() {
return this.zzb;
}
}