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

37 lines
1.2 KiB
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package com.discord.databinding;
import android.view.View;
import android.widget.RelativeLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.discord.utilities.view.text.LinkifiedTextView;
public final class WidgetUserAccountVerifyBinding implements ViewBinding {
@NonNull
public final RelativeLayout a;
@NonNull
public final RelativeLayout b;
@NonNull
/* renamed from: c reason: collision with root package name */
2021-07-13 20:23:20 +00:00
public final RelativeLayout f1997c;
2021-06-27 20:44:35 +00:00
@NonNull
public final LinkifiedTextView d;
@NonNull
public final TextView e;
public WidgetUserAccountVerifyBinding(@NonNull RelativeLayout relativeLayout, @NonNull RelativeLayout relativeLayout2, @NonNull RelativeLayout relativeLayout3, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView) {
this.a = relativeLayout;
this.b = relativeLayout2;
2021-07-13 20:23:20 +00:00
this.f1997c = relativeLayout3;
2021-06-27 20:44:35 +00:00
this.d = linkifiedTextView;
this.e = textView;
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}