discord-jadx/app/src/main/java/c/a/j/y3.java

35 lines
1.1 KiB
Java
Raw Normal View History

2021-08-03 07:33:18 +00:00
package c.a.j;
2021-07-24 02:37:17 +00:00
import android.view.View;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
2021-07-28 07:39:21 +00:00
import com.discord.views.CutoutView;
import com.facebook.drawee.view.SimpleDraweeView;
/* compiled from: ViewUserSummaryItemBinding */
2021-08-03 07:33:18 +00:00
public final class y3 implements ViewBinding {
2021-07-24 02:37:17 +00:00
@NonNull
2021-07-28 07:39:21 +00:00
public final CutoutView a;
2021-07-24 02:37:17 +00:00
@NonNull
2021-07-28 07:39:21 +00:00
public final SimpleDraweeView b;
2021-07-24 02:37:17 +00:00
2021-08-03 07:33:18 +00:00
public y3(@NonNull CutoutView cutoutView, @NonNull SimpleDraweeView simpleDraweeView) {
2021-07-28 07:39:21 +00:00
this.a = cutoutView;
this.b = simpleDraweeView;
}
2021-07-24 02:37:17 +00:00
2021-07-28 07:39:21 +00:00
@NonNull
2021-08-03 07:33:18 +00:00
public static y3 a(@NonNull View view) {
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(2131362084);
2021-07-28 07:39:21 +00:00
if (simpleDraweeView != null) {
2021-08-03 07:33:18 +00:00
return new y3((CutoutView) view, simpleDraweeView);
2021-07-28 07:39:21 +00:00
}
2021-08-03 07:33:18 +00:00
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(2131362084)));
2021-07-24 02:37:17 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}