package com.discord.databinding; import android.view.View; import androidx.annotation.NonNull; import androidx.core.widget.NestedScrollView; import androidx.viewbinding.ViewBinding; import com.discord.utilities.view.recycler.MaxHeightRecyclerView; public final class WidgetSettingsLanguageSelectBinding implements ViewBinding { @NonNull public final NestedScrollView a; @NonNull public final MaxHeightRecyclerView b; public WidgetSettingsLanguageSelectBinding(@NonNull NestedScrollView nestedScrollView, @NonNull MaxHeightRecyclerView maxHeightRecyclerView) { this.a = nestedScrollView; this.b = maxHeightRecyclerView; } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }