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

99 lines
3.0 KiB
Java

package com.google.android.gms.internal.ads;
import androidx.annotation.Nullable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
/* loaded from: classes3.dex */
public final class zzapi {
public final int zza;
public final byte[] zzb;
@Nullable
public final Map zzc;
@Nullable
public final List zzd;
public final boolean zze;
private zzapi(int i, byte[] bArr, @Nullable Map map, @Nullable List list, boolean z, long j) {
this.zza = i;
this.zzb = bArr;
this.zzc = map;
this.zzd = list == null ? null : Collections.unmodifiableList(list);
this.zze = z;
}
@Nullable
private static List zza(@Nullable Map map) {
if (map == null) {
return null;
}
if (map.isEmpty()) {
return Collections.emptyList();
}
ArrayList arrayList = new ArrayList(map.size());
for (Map.Entry entry : map.entrySet()) {
arrayList.add(new zzape((String) entry.getKey(), (String) entry.getValue()));
}
return arrayList;
}
@Deprecated
public zzapi(int i, byte[] bArr, @Nullable Map map, boolean z, long j) {
this(i, bArr, map, zza(map), z, j);
}
/* 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 zzapi(int r9, byte[] r10, boolean r11, long r12, @androidx.annotation.Nullable java.util.List r14) {
/*
r8 = this;
if (r14 != 0) goto L5
r0 = 0
L3:
r3 = r0
goto L33
L5:
boolean r0 = r14.isEmpty()
if (r0 == 0) goto L10
java.util.Map r0 = java.util.Collections.emptyMap()
goto L3
L10:
java.util.TreeMap r0 = new java.util.TreeMap
java.util.Comparator r1 = java.lang.String.CASE_INSENSITIVE_ORDER
r0.<init>(r1)
java.util.Iterator r1 = r14.iterator()
L1b:
boolean r2 = r1.hasNext()
if (r2 == 0) goto L3
java.lang.Object r2 = r1.next()
com.google.android.gms.internal.ads.zzape r2 = (com.google.android.gms.internal.ads.zzape) r2
java.lang.String r3 = r2.zza()
java.lang.String r2 = r2.zzb()
r0.put(r3, r2)
goto L1b
L33:
r0 = r8
r1 = r9
r2 = r10
r4 = r14
r5 = r11
r6 = r12
r0.<init>(r1, r2, r3, r4, r5, r6)
return
*/
throw new UnsupportedOperationException("Method not decompiled: com.google.android.gms.internal.ads.zzapi.<init>(int, byte[], boolean, long, java.util.List):void");
}
@Deprecated
public zzapi(byte[] bArr, @Nullable Map map) {
this(200, bArr, map, zza(map), false, 0L);
}
}