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

27 lines
746 B
Java
Raw Normal View History

2021-07-24 02:37:17 +00:00
package c.a.i;
import android.view.View;
2021-07-28 07:39:21 +00:00
import android.widget.ImageView;
import android.widget.TextView;
2021-07-24 02:37:17 +00:00
import androidx.annotation.NonNull;
2021-07-28 07:39:21 +00:00
import androidx.constraintlayout.widget.ConstraintLayout;
2021-07-24 02:37:17 +00:00
import androidx.viewbinding.ViewBinding;
2021-07-28 07:39:21 +00:00
/* compiled from: ViewInteractionFailedLabelBinding */
2021-07-24 02:37:17 +00:00
public final class d2 implements ViewBinding {
@NonNull
2021-07-28 07:39:21 +00:00
public final ConstraintLayout a;
2021-07-24 02:37:17 +00:00
@NonNull
2021-07-28 07:39:21 +00:00
public final TextView b;
2021-07-24 02:37:17 +00:00
2021-07-28 07:39:21 +00:00
public d2(@NonNull ConstraintLayout constraintLayout, @NonNull ImageView imageView, @NonNull TextView textView) {
this.a = constraintLayout;
this.b = textView;
2021-07-24 02:37:17 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}