package com.discord.databinding; import android.view.View; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.cardview.widget.CardView; import androidx.viewbinding.ViewBinding; public final class WidgetFolderContextMenuBinding implements ViewBinding { @NonNull public final CardView a; @NonNull public final CardView b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f1788c; @NonNull public final TextView d; @NonNull public final TextView e; public WidgetFolderContextMenuBinding(@NonNull CardView cardView, @NonNull CardView cardView2, @NonNull TextView textView, @NonNull View view, @NonNull TextView textView2, @NonNull TextView textView3) { this.a = cardView; this.b = cardView2; this.f1788c = textView; this.d = textView2; this.e = textView3; } @NonNull public static WidgetFolderContextMenuBinding a(@NonNull View view) { CardView cardView = (CardView) view; int i = 2131363273; TextView textView = (TextView) view.findViewById(2131363273); if (textView != null) { i = 2131363274; View findViewById = view.findViewById(2131363274); if (findViewById != null) { i = 2131363275; TextView textView2 = (TextView) view.findViewById(2131363275); if (textView2 != null) { i = 2131363276; TextView textView3 = (TextView) view.findViewById(2131363276); if (textView3 != null) { return new WidgetFolderContextMenuBinding((CardView) view, cardView, textView, findViewById, textView2, textView3); } } } } throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }