discord-jadx/app/src/main/java/com/discord/databinding/UserProfileAdminViewBinding...

48 lines
1.4 KiB
Java

package com.discord.databinding;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
public final class UserProfileAdminViewBinding implements ViewBinding {
@NonNull
public final LinearLayout a;
@NonNull
/* renamed from: b reason: collision with root package name */
public final TextView f2146b;
@NonNull
public final TextView c;
@NonNull
public final TextView d;
@NonNull
public final TextView e;
@NonNull
public final TextView f;
@NonNull
public final TextView g;
@NonNull
public final TextView h;
@NonNull
public final TextView i;
public UserProfileAdminViewBinding(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull TextView textView5, @NonNull TextView textView6, @NonNull TextView textView7, @NonNull TextView textView8) {
this.a = linearLayout;
this.f2146b = textView;
this.c = textView2;
this.d = textView3;
this.e = textView4;
this.f = textView5;
this.g = textView6;
this.h = textView7;
this.i = textView8;
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}