Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
package dagger.internal;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;
/* JADX INFO: Access modifiers changed from: package-private */
/* loaded from: classes3.dex */
public abstract class AbstractMapFactory<K, V, V2> implements Factory<Map<K, V2>> {
private final Map<K, Provider<V>> contributingMap;
/* loaded from: classes3.dex */
public static abstract class Builder<K, V, V2> {
final LinkedHashMap<K, Provider<V>> map;
public Builder(int i) {
this.map = DaggerCollections.newLinkedHashMapWithExpectedSize(i);
}
/* JADX WARN: Multi-variable type inference failed */
public Builder<K, V, V2> put(K k4, Provider<V> provider) {
this.map.put(Preconditions.checkNotNull(k4, "key"), Preconditions.checkNotNull(provider, "provider"));
return this;
}
public Builder<K, V, V2> putAll(Provider<Map<K, V2>> provider) {
if (provider instanceof DelegateFactory) {
return putAll(((DelegateFactory) provider).getDelegate());
}
this.map.putAll(((AbstractMapFactory) provider).contributingMap);
return this;
}
}
public AbstractMapFactory(Map<K, Provider<V>> map) {
this.contributingMap = Collections.unmodifiableMap(map);
}
public final Map<K, Provider<V>> contributingMap() {
return this.contributingMap;
}
}