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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
package com.mbridge.msdk.reward.adapter;
import com.mbridge.msdk.foundation.tools.af;
import com.mbridge.msdk.system.NoProGuard;
import java.util.concurrent.ConcurrentHashMap;
/* loaded from: classes4.dex */
public final class RewardUnitCacheManager implements NoProGuard {
private static final String TAG = "RewardUnitCacheManager";
private ConcurrentHashMap<String, com.mbridge.msdk.videocommon.d.c> rewardUnitSettings;
public static final class a {
private static final RewardUnitCacheManager a = new RewardUnitCacheManager();
}
private RewardUnitCacheManager() {
this.rewardUnitSettings = new ConcurrentHashMap<>();
}
public static RewardUnitCacheManager getInstance() {
return a.a;
}
public final void add(String str, String str2, com.mbridge.msdk.videocommon.d.c cVar) {
try {
String str3 = str + "_" + str2;
if (cVar != null && this.rewardUnitSettings.containsKey(str3)) {
this.rewardUnitSettings.remove(str3);
}
this.rewardUnitSettings.put(str3, cVar);
} catch (Exception e) {
af.b(TAG, e.getMessage());
}
}
public final com.mbridge.msdk.videocommon.d.c get(String str, String str2) {
try {
try {
return this.rewardUnitSettings.remove(str + "_" + str2);
} catch (Exception e) {
af.b(TAG, e.getMessage());
return null;
}
} catch (Throwable unused) {
return null;
}
}
}