Files
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

91 lines
2.6 KiB
Java

package com.applovin.impl;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
/* loaded from: classes.dex */
public final class u4 implements Iterable {
private final Object a = new Object();
private final Map b = new HashMap();
private Set c = Collections.emptySet();
private List d = Collections.emptyList();
public void a(Object obj) {
synchronized (this.a) {
try {
ArrayList arrayList = new ArrayList(this.d);
arrayList.add(obj);
this.d = Collections.unmodifiableList(arrayList);
Integer num = (Integer) this.b.get(obj);
if (num == null) {
HashSet hashSet = new HashSet(this.c);
hashSet.add(obj);
this.c = Collections.unmodifiableSet(hashSet);
}
this.b.put(obj, Integer.valueOf(num != null ? 1 + num.intValue() : 1));
} catch (Throwable th) {
throw th;
}
}
}
public void c(Object obj) {
synchronized (this.a) {
try {
Integer num = (Integer) this.b.get(obj);
if (num == null) {
return;
}
ArrayList arrayList = new ArrayList(this.d);
arrayList.remove(obj);
this.d = Collections.unmodifiableList(arrayList);
if (num.intValue() == 1) {
this.b.remove(obj);
HashSet hashSet = new HashSet(this.c);
hashSet.remove(obj);
this.c = Collections.unmodifiableSet(hashSet);
} else {
this.b.put(obj, Integer.valueOf(num.intValue() - 1));
}
} catch (Throwable th) {
throw th;
}
}
}
@Override // java.lang.Iterable
public Iterator iterator() {
Iterator it;
synchronized (this.a) {
it = this.d.iterator();
}
return it;
}
public int b(Object obj) {
int intValue;
synchronized (this.a) {
try {
intValue = this.b.containsKey(obj) ? ((Integer) this.b.get(obj)).intValue() : 0;
} catch (Throwable th) {
throw th;
}
}
return intValue;
}
public Set a() {
Set set;
synchronized (this.a) {
set = this.c;
}
return set;
}
}