discord-jadx/app/src/main/java/com/discord/stores/StoreCalls$call$4.java

23 lines
1.1 KiB
Java

package com.discord.stores;
import com.discord.api.channel.Channel;
import com.discord.api.voice.state.VoiceState;
import java.util.Map;
import kotlin.Pair;
import rx.functions.Func2;
/* compiled from: StoreCalls.kt */
public final class StoreCalls$call$4<T1, T2, R> implements Func2<Channel, Map<Long, ? extends VoiceState>, Pair<? extends Channel, ? extends Map<Long, ? extends VoiceState>>> {
public static final StoreCalls$call$4 INSTANCE = new StoreCalls$call$4();
/* Return type fixed from 'java.lang.Object' to match base method */
/* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object, java.lang.Object] */
@Override // rx.functions.Func2
public /* bridge */ /* synthetic */ Pair<? extends Channel, ? extends Map<Long, ? extends VoiceState>> call(Channel channel, Map<Long, ? extends VoiceState> map) {
return call(channel, (Map<Long, VoiceState>) map);
}
public final Pair<Channel, Map<Long, VoiceState>> call(Channel channel, Map<Long, VoiceState> map) {
return new Pair<>(channel, map);
}
}