discord-jadx/app/src/main/java/com/discord/widgets/auth/WidgetAuthRegisterAccountIn...

32 lines
1.4 KiB
Java

package com.discord.widgets.auth;
import com.discord.api.auth.RegisterResponse;
import com.discord.utilities.analytics.AnalyticsTracker;
import com.discord.utilities.auth.RegistrationFlowRepo;
import d0.z.d.m;
import d0.z.d.o;
import kotlin.Unit;
import kotlin.jvm.functions.Function1;
/* compiled from: WidgetAuthRegisterAccountInformation.kt */
public final class WidgetAuthRegisterAccountInformation$register$1 extends o implements Function1<RegisterResponse, Unit> {
public static final WidgetAuthRegisterAccountInformation$register$1 INSTANCE = new WidgetAuthRegisterAccountInformation$register$1();
public WidgetAuthRegisterAccountInformation$register$1() {
super(1);
}
/* 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] */
@Override // kotlin.jvm.functions.Function1
public /* bridge */ /* synthetic */ Unit invoke(RegisterResponse registerResponse) {
invoke(registerResponse);
return Unit.a;
}
public final void invoke(RegisterResponse registerResponse) {
m.checkNotNullParameter(registerResponse, "it");
AnalyticsTracker.INSTANCE.registered(true);
RegistrationFlowRepo.trackTransition$default(RegistrationFlowRepo.Companion.getINSTANCE(), "Account Information", "success", null, 4, null);
}
}