discord-jadx/app/src/main/java/com/discord/widgets/notice/WidgetNoticeDialog$binding$...

51 lines
2.5 KiB
Java

package com.discord.widgets.notice;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
import com.discord.R;
import com.discord.databinding.WidgetNoticeDialogBinding;
import com.discord.utilities.view.text.LinkifiedTextView;
import com.google.android.material.button.MaterialButton;
import d0.z.d.k;
import d0.z.d.m;
import kotlin.jvm.functions.Function1;
/* compiled from: WidgetNoticeDialog.kt */
public final /* synthetic */ class WidgetNoticeDialog$binding$2 extends k implements Function1<View, WidgetNoticeDialogBinding> {
public static final WidgetNoticeDialog$binding$2 INSTANCE = new WidgetNoticeDialog$binding$2();
public WidgetNoticeDialog$binding$2() {
super(1, WidgetNoticeDialogBinding.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetNoticeDialogBinding;", 0);
}
public final WidgetNoticeDialogBinding invoke(View view) {
m.checkNotNullParameter(view, "p1");
int i = R.id.notice_body_container;
LinearLayout linearLayout = (LinearLayout) view.findViewById(R.id.notice_body_container);
if (linearLayout != null) {
i = R.id.notice_body_text;
LinkifiedTextView linkifiedTextView = (LinkifiedTextView) view.findViewById(R.id.notice_body_text);
if (linkifiedTextView != null) {
i = R.id.notice_cancel;
MaterialButton materialButton = (MaterialButton) view.findViewById(R.id.notice_cancel);
if (materialButton != null) {
i = R.id.notice_header;
TextView textView = (TextView) view.findViewById(R.id.notice_header);
if (textView != null) {
i = R.id.notice_header_container;
LinearLayout linearLayout2 = (LinearLayout) view.findViewById(R.id.notice_header_container);
if (linearLayout2 != null) {
i = R.id.notice_ok;
MaterialButton materialButton2 = (MaterialButton) view.findViewById(R.id.notice_ok);
if (materialButton2 != null) {
return new WidgetNoticeDialogBinding((LinearLayout) view, linearLayout, linkifiedTextView, materialButton, textView, linearLayout2, materialButton2);
}
}
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
}