discord-jadx/app/src/main/java/com/discord/widgets/auth/WidgetAuthRegisterAccountInformation$register$1.java

32 lines
1.4 KiB
Java
Raw Normal View History

2021-08-03 07:33:18 +00:00
package com.discord.widgets.auth;
2021-10-15 06:18:26 +00:00
import c0.z.d.m;
import c0.z.d.o;
2021-08-03 07:33:18 +00:00
import com.discord.api.auth.RegisterResponse;
import com.discord.utilities.analytics.AnalyticsTracker;
import com.discord.utilities.auth.RegistrationFlowRepo;
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);
}
}