Files
rr3-apk/decompiled/sources/com/ironsource/xc.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

55 lines
1.2 KiB
Java

package com.ironsource;
import java.util.Map;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public class xc {
public static final String b = "userId";
public static final String c = "appKey";
private static xc d;
private JSONObject a = new JSONObject();
private xc() {
}
public static synchronized xc a() {
xc xcVar;
synchronized (xc.class) {
try {
if (d == null) {
d = new xc();
}
xcVar = d;
} catch (Throwable th) {
throw th;
}
}
return xcVar;
}
public synchronized String a(String str) {
return this.a.optString(str);
}
public synchronized void a(String str, Object obj) {
try {
this.a.put(str, obj);
} catch (Exception e) {
i9.d().a(e);
}
}
public synchronized void a(Map<String, Object> map) {
if (map != null) {
for (String str : map.keySet()) {
a(str, map.get(str));
}
}
}
public synchronized JSONObject b() {
return this.a;
}
}