discord-jadx/app/src/main/java/com/discord/widgets/auth/WidgetAuthCaptcha$binding$2...

39 lines
1.8 KiB
Java

package com.discord.widgets.auth;
import android.view.View;
import android.widget.TextView;
import androidx.coordinatorlayout.widget.CoordinatorLayout;
import c0.z.d.k;
import c0.z.d.m;
import com.discord.R;
import com.discord.databinding.WidgetAuthCaptchaBinding;
import com.discord.views.ScreenTitleView;
import com.google.android.material.button.MaterialButton;
import kotlin.jvm.functions.Function1;
/* compiled from: WidgetAuthCaptcha.kt */
public final /* synthetic */ class WidgetAuthCaptcha$binding$2 extends k implements Function1<View, WidgetAuthCaptchaBinding> {
public static final WidgetAuthCaptcha$binding$2 INSTANCE = new WidgetAuthCaptcha$binding$2();
public WidgetAuthCaptcha$binding$2() {
super(1, WidgetAuthCaptchaBinding.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetAuthCaptchaBinding;", 0);
}
public final WidgetAuthCaptchaBinding invoke(View view) {
m.checkNotNullParameter(view, "p1");
int i = R.id.auth_captcha_help;
TextView textView = (TextView) view.findViewById(R.id.auth_captcha_help);
if (textView != null) {
i = R.id.auth_captcha_verify;
MaterialButton materialButton = (MaterialButton) view.findViewById(R.id.auth_captcha_verify);
if (materialButton != null) {
i = R.id.screen_title;
ScreenTitleView screenTitleView = (ScreenTitleView) view.findViewById(R.id.screen_title);
if (screenTitleView != null) {
return new WidgetAuthCaptchaBinding((CoordinatorLayout) view, textView, materialButton, screenTitleView);
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
}