package c.a.i; import android.view.View; import android.widget.LinearLayout; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; import com.discord.utilities.view.text.LinkifiedTextView; import com.discord.views.CheckedSetting; /* compiled from: LayoutContactSyncToggleInfoBinding */ public final class g0 implements ViewBinding { @NonNull public final LinearLayout a; @NonNull public final LinkifiedTextView b; @NonNull /* renamed from: c reason: collision with root package name */ public final CheckedSetting f95c; public g0(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull CheckedSetting checkedSetting) { this.a = linearLayout; this.b = linkifiedTextView; this.f95c = checkedSetting; } @NonNull public static g0 a(@NonNull View view) { int i = 2131362729; TextView textView = (TextView) view.findViewById(2131362729); if (textView != null) { i = 2131362730; LinkifiedTextView linkifiedTextView = (LinkifiedTextView) view.findViewById(2131362730); if (linkifiedTextView != null) { i = 2131362731; CheckedSetting checkedSetting = (CheckedSetting) view.findViewById(2131362731); if (checkedSetting != null) { return new g0((LinearLayout) view, textView, linkifiedTextView, checkedSetting); } } } throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }