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

26 lines
640 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.RelativeLayout;
2021-07-27 00:35:07 +00:00
import android.widget.TextView;
2021-07-24 02:37:17 +00:00
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
2021-07-28 07:39:21 +00:00
/* compiled from: ShinyButtonBinding */
2021-07-24 02:37:17 +00:00
public final class h1 implements ViewBinding {
@NonNull
2021-07-28 07:39:21 +00:00
public final RelativeLayout 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 h1(@NonNull RelativeLayout relativeLayout, @NonNull TextView textView) {
this.a = relativeLayout;
this.b = textView;
2021-07-24 02:37:17 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}