package com.discord.databinding; import android.view.View; import android.widget.FrameLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; public final class WidgetFriendsListExpandableHeaderBinding implements ViewBinding { @NonNull public final FrameLayout a; @NonNull public final TextView b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f1793c; public WidgetFriendsListExpandableHeaderBinding(@NonNull FrameLayout frameLayout, @NonNull TextView textView, @NonNull TextView textView2) { this.a = frameLayout; this.b = textView; this.f1793c = textView2; } @NonNull public static WidgetFriendsListExpandableHeaderBinding a(@NonNull View view) { int i = 2131363299; TextView textView = (TextView) view.findViewById(2131363299); if (textView != null) { i = 2131363316; TextView textView2 = (TextView) view.findViewById(2131363316); if (textView2 != null) { return new WidgetFriendsListExpandableHeaderBinding((FrameLayout) view, textView, textView2); } } throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }