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

31 lines
838 B
Java
Raw Normal View History

2021-08-03 07:33:18 +00:00
package com.discord.databinding;
2021-07-24 02:37:17 +00:00
import android.view.View;
2021-07-27 00:35:07 +00:00
import android.widget.FrameLayout;
2021-07-28 07:39:21 +00:00
import android.widget.ImageView;
2021-07-24 02:37:17 +00:00
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
2021-12-17 21:59:34 +00:00
import b.a.i.n;
2021-08-03 07:33:18 +00:00
public final class EmojiCategoryItemStandardBinding implements ViewBinding {
2021-07-24 02:37:17 +00:00
@NonNull
2021-07-27 00:35:07 +00:00
public final FrameLayout a;
2021-07-24 02:37:17 +00:00
@NonNull
2021-08-03 07:33:18 +00:00
2021-12-17 21:59:34 +00:00
/* renamed from: b reason: collision with root package name */
public final ImageView f2076b;
@NonNull
public final n c;
2021-07-24 02:37:17 +00:00
2021-08-20 05:39:29 +00:00
public EmojiCategoryItemStandardBinding(@NonNull FrameLayout frameLayout, @NonNull ImageView imageView, @NonNull n nVar) {
2021-07-27 00:35:07 +00:00
this.a = frameLayout;
2021-12-17 21:59:34 +00:00
this.f2076b = imageView;
this.c = nVar;
2021-07-24 02:37:17 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}