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

26 lines
641 B
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 android.widget.FrameLayout;
2021-08-10 10:47:20 +00:00
import android.widget.ImageView;
2021-07-24 02:37:17 +00:00
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
2021-08-10 10:47:20 +00:00
/* compiled from: WidgetHomePanelLoadingBinding */
2021-07-24 02:37:17 +00:00
public final class d5 implements ViewBinding {
@NonNull
2021-08-10 10:47:20 +00:00
public final FrameLayout a;
2021-07-24 02:37:17 +00:00
@NonNull
2021-08-10 10:47:20 +00:00
public final ImageView b;
2021-07-24 02:37:17 +00:00
2021-08-10 10:47:20 +00:00
public d5(@NonNull FrameLayout frameLayout, @NonNull ImageView imageView) {
this.a = frameLayout;
this.b = imageView;
2021-07-24 02:37:17 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}