Files
rr3-apk/decompiled/sources/com/mbridge/msdk/videocommon/b/b.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

47 lines
1.3 KiB
Java

package com.mbridge.msdk.videocommon.b;
import java.util.ArrayList;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes4.dex */
public final class b {
private int a;
private int b;
private a c;
public final int a() {
return this.a;
}
public final int b() {
return this.b;
}
public b(int i, int i2, a aVar) {
this.a = i;
this.b = i2;
this.c = aVar;
}
public static List<b> a(JSONArray jSONArray) {
if (jSONArray != null && jSONArray.length() > 0) {
ArrayList arrayList = new ArrayList();
for (int i = 0; i < jSONArray.length(); i++) {
try {
JSONObject optJSONObject = jSONArray.optJSONObject(i);
int optInt = optJSONObject.optInt("id");
int optInt2 = optJSONObject.optInt("timeout");
JSONObject optJSONObject2 = optJSONObject.optJSONObject("params");
arrayList.add(new b(optInt, optInt2, optJSONObject2 != null ? a.a(optJSONObject2) : null));
} catch (Exception e) {
e.printStackTrace();
}
}
return arrayList;
}
return null;
}
}