discord-jadx/app/src/main/java/com/discord/widgets/home/HomePanelsLayout.java

38 lines
1.7 KiB
Java

package com.discord.widgets.home;
import android.content.Context;
import android.util.AttributeSet;
import com.discord.panels.OverlappingPanelsLayout;
import d0.z.d.m;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* compiled from: HomePanelsLayout.kt */
public final class HomePanelsLayout extends OverlappingPanelsLayout implements PanelLayout {
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public HomePanelsLayout(Context context) {
super(context);
m.checkNotNullParameter(context, "context");
}
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public HomePanelsLayout(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
m.checkNotNullParameter(context, "context");
}
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public HomePanelsLayout(Context context, AttributeSet attributeSet, int i) {
super(context, attributeSet, i);
m.checkNotNullParameter(context, "context");
}
/* JADX INFO: this call moved to the top of the method (can break code semantics) */
public /* synthetic */ HomePanelsLayout(Context context, AttributeSet attributeSet, int i, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this(context, (i2 & 2) != 0 ? null : attributeSet, (i2 & 4) != 0 ? 0 : i);
}
/* JADX INFO: this call moved to the top of the method (can break code semantics) */
public /* synthetic */ HomePanelsLayout(Context context, AttributeSet attributeSet, int i, DefaultConstructorMarker defaultConstructorMarker) {
this(context, (i & 2) != 0 ? null : attributeSet);
}
}