discord-jadx/app/src/main/java/com/discord/stores/StoreUser$observeUsers$1.java

25 lines
855 B
Java

package com.discord.stores;
import com.discord.models.user.User;
import java.util.Collection;
import java.util.Map;
import rx.functions.Action1;
/* compiled from: StoreUser.kt */
public final class StoreUser$observeUsers$1<T> implements Action1<Map<Long, ? extends User>> {
public final /* synthetic */ boolean $fetchUserIfMissing;
public final /* synthetic */ Collection $userIds;
public final /* synthetic */ StoreUser this$0;
public StoreUser$observeUsers$1(StoreUser storeUser, boolean z2, Collection collection) {
this.this$0 = storeUser;
this.$fetchUserIfMissing = z2;
this.$userIds = collection;
}
public final void call(Map<Long, ? extends User> map) {
if (this.$fetchUserIfMissing) {
StoreUser.access$fetchMissing(this.this$0, this.$userIds, map.keySet());
}
}
}