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,39 @@
package com.ironsource;
import java.util.concurrent.ConcurrentHashMap;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class rn implements ne {
private final a8 a;
private ConcurrentHashMap<String, Long> b;
public rn(a8 storage) {
Intrinsics.checkNotNullParameter(storage, "storage");
this.a = storage;
this.b = new ConcurrentHashMap<>();
}
@Override // com.ironsource.ne
public Long a(String identifier) {
Intrinsics.checkNotNullParameter(identifier, "identifier");
Long l = this.b.get(identifier);
if (l != null) {
return l;
}
Long b = this.a.b(identifier);
if (b == null) {
return null;
}
long longValue = b.longValue();
this.b.put(identifier, Long.valueOf(longValue));
return Long.valueOf(longValue);
}
@Override // com.ironsource.ne
public void a(long j, String identifier) {
Intrinsics.checkNotNullParameter(identifier, "identifier");
this.b.put(identifier, Long.valueOf(j));
this.a.b(identifier, j);
}
}