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,62 @@
package com.google.firebase.components;
import com.google.firebase.inject.Provider;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
/* loaded from: classes3.dex */
public class LazySet implements Provider {
public volatile Set actualSet = null;
public volatile Set providers = Collections.newSetFromMap(new ConcurrentHashMap());
public LazySet(Collection collection) {
this.providers.addAll(collection);
}
public static LazySet fromCollection(Collection collection) {
return new LazySet((Set) collection);
}
@Override // com.google.firebase.inject.Provider
public Set get() {
if (this.actualSet == null) {
synchronized (this) {
try {
if (this.actualSet == null) {
this.actualSet = Collections.newSetFromMap(new ConcurrentHashMap());
updateSet();
}
} finally {
}
}
}
return Collections.unmodifiableSet(this.actualSet);
}
public synchronized void add(Provider provider) {
try {
if (this.actualSet == null) {
this.providers.add(provider);
} else {
this.actualSet.add(provider.get());
}
} catch (Throwable th) {
throw th;
}
}
public final synchronized void updateSet() {
try {
Iterator it = this.providers.iterator();
while (it.hasNext()) {
this.actualSet.add(((Provider) it.next()).get());
}
this.providers = null;
} catch (Throwable th) {
throw th;
}
}
}