package com.discord.databinding; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.viewbinding.ViewBinding; import com.google.android.material.button.MaterialButton; public final class EmptyFriendsStateViewBinding implements ViewBinding { @NonNull public final View a; @NonNull public final MaterialButton b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f1607c; public EmptyFriendsStateViewBinding(@NonNull View view, @NonNull MaterialButton materialButton, @Nullable ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2) { this.a = view; this.b = materialButton; this.f1607c = textView; } @NonNull public static EmptyFriendsStateViewBinding a(@NonNull LayoutInflater layoutInflater, @NonNull ViewGroup viewGroup) { layoutInflater.inflate(2131558488, viewGroup); int i = 2131363083; MaterialButton materialButton = (MaterialButton) viewGroup.findViewById(2131363083); if (materialButton != null) { ImageView imageView = (ImageView) viewGroup.findViewById(2131363087); i = 2131363088; TextView textView = (TextView) viewGroup.findViewById(2131363088); if (textView != null) { i = 2131365255; TextView textView2 = (TextView) viewGroup.findViewById(2131365255); if (textView2 != null) { return new EmptyFriendsStateViewBinding(viewGroup, materialButton, imageView, textView, textView2); } } } throw new NullPointerException("Missing required view with ID: ".concat(viewGroup.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }