Files
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

48 lines
1.2 KiB
Java

package com.mbridge.msdk.tracker.network;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
/* loaded from: classes4.dex */
public final class r {
public final int a;
public final byte[] b;
public final Map<String, String> c;
public final List<h> d;
public final boolean e;
public final long f;
public r(int i, byte[] bArr, boolean z, long j, List<h> list) {
this(i, bArr, a(list), list, z, j);
}
private r(int i, byte[] bArr, Map<String, String> map, List<h> list, boolean z, long j) {
this.a = i;
this.b = bArr;
this.c = map;
if (list == null) {
this.d = null;
} else {
this.d = Collections.unmodifiableList(list);
}
this.e = z;
this.f = j;
}
private static Map<String, String> a(List<h> list) {
if (list == null) {
return null;
}
if (list.isEmpty()) {
return Collections.emptyMap();
}
TreeMap treeMap = new TreeMap(String.CASE_INSENSITIVE_ORDER);
for (h hVar : list) {
treeMap.put(hVar.a(), hVar.b());
}
return treeMap;
}
}