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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,78 @@
package com.google.android.gms.internal.ads;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
/* loaded from: classes3.dex */
abstract class zzfwj implements zzfyl {
private transient Set zza;
private transient Collection zzb;
private transient Map zzc;
public final boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof zzfyl) {
return zzs().equals(((zzfyl) obj).zzs());
}
return false;
}
public final int hashCode() {
return zzs().hashCode();
}
public final String toString() {
return zzs().toString();
}
public abstract Collection zzf();
public Iterator zzg() {
throw null;
}
public abstract Map zzj();
public abstract Set zzl();
@Override // com.google.android.gms.internal.ads.zzfyl
public boolean zzq(Object obj, Object obj2) {
throw null;
}
@Override // com.google.android.gms.internal.ads.zzfyl
public final Collection zzr() {
Collection collection = this.zzb;
if (collection != null) {
return collection;
}
Collection zzf = zzf();
this.zzb = zzf;
return zzf;
}
@Override // com.google.android.gms.internal.ads.zzfyl
public final Map zzs() {
Map map = this.zzc;
if (map != null) {
return map;
}
Map zzj = zzj();
this.zzc = zzj;
return zzj;
}
public final Set zzt() {
Set set = this.zza;
if (set != null) {
return set;
}
Set zzl = zzl();
this.zza = zzl;
return zzl;
}
}