discord-jadx/app/src/main/java/c/a/i/m5.java

46 lines
1.5 KiB
Java

package c.a.i;
import android.view.View;
import android.widget.RelativeLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.facebook.drawee.view.SimpleDraweeView;
/* compiled from: WidgetUserProfileAdapterItemFriendMutualServerBinding */
public final class m5 implements ViewBinding {
@NonNull
public final RelativeLayout a;
@NonNull
public final SimpleDraweeView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f129c;
public m5(@NonNull RelativeLayout relativeLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) {
this.a = relativeLayout;
this.b = simpleDraweeView;
this.f129c = textView;
}
@NonNull
public static m5 a(@NonNull View view) {
int i = 2131365450;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(2131365450);
if (simpleDraweeView != null) {
i = 2131365451;
TextView textView = (TextView) view.findViewById(2131365451);
if (textView != null) {
return new m5((RelativeLayout) view, simpleDraweeView, textView);
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}