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

63 lines
1.1 KiB
Java

package com.mbridge.msdk.foundation.same.b;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/* loaded from: classes4.dex */
public final class a {
private List<a> a;
private String b;
private a c;
private c d;
public final List<a> a() {
return this.a;
}
public final void a(c cVar) {
this.d = cVar;
}
public final void a(String str) {
this.b = str;
}
public final String b() {
return this.b;
}
public final a c() {
return this.c;
}
public final c d() {
return this.d;
}
public final void a(c cVar, String str) {
a aVar = new a();
aVar.d = cVar;
aVar.b = str;
a(aVar);
}
private void a(a aVar) {
if (this.a == null) {
this.a = new ArrayList();
}
aVar.c = this;
this.a.add(aVar);
}
public final void a(List<a> list) {
if (list == null || list.size() == 0) {
return;
}
Iterator<a> it = list.iterator();
while (it.hasNext()) {
a(it.next());
}
}
}