- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
40 lines
1.1 KiB
Java
40 lines
1.1 KiB
Java
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);
|
|
}
|
|
}
|