discord-jadx/app/src/main/java/com/discord/widgets/chat/input/ChatInputViewModel$sendMess...

31 lines
1.3 KiB
Java

package com.discord.widgets.chat.input;
import com.discord.widgets.chat.input.ChatInputViewModel;
import d0.z.d.o;
import kotlin.Unit;
import kotlin.jvm.functions.Function2;
import rx.subjects.PublishSubject;
/* compiled from: ChatInputViewModel.kt */
public final class ChatInputViewModel$sendMessage$onMessageTooLong$1 extends o implements Function2<Integer, Integer, Unit> {
public final /* synthetic */ ChatInputViewModel this$0;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public ChatInputViewModel$sendMessage$onMessageTooLong$1(ChatInputViewModel chatInputViewModel) {
super(2);
this.this$0 = chatInputViewModel;
}
/* 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 // kotlin.jvm.functions.Function2
public /* bridge */ /* synthetic */ Unit invoke(Integer num, Integer num2) {
invoke(num.intValue(), num2.intValue());
return Unit.a;
}
public final void invoke(int i, int i2) {
PublishSubject access$getEventSubject$p = ChatInputViewModel.access$getEventSubject$p(this.this$0);
access$getEventSubject$p.j.onNext(new ChatInputViewModel.Event.MessageTooLong(i, i2));
}
}