package com.discord.widgets.user.profile; import android.content.Context; import android.util.AttributeSet; import androidx.recyclerview.widget.GridLayoutManager; import d0.z.d.m; /* compiled from: RightToLeftGridLayoutManager.kt */ public final class RightToLeftGridLayoutManager extends GridLayoutManager { /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public RightToLeftGridLayoutManager(Context context, int i) { super(context, i); m.checkNotNullParameter(context, "context"); } /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public RightToLeftGridLayoutManager(Context context, int i, int i2, boolean z2) { super(context, i, i2, z2); m.checkNotNullParameter(context, "context"); } /* JADX INFO: super call moved to the top of the method (can break code semantics) */ public RightToLeftGridLayoutManager(Context context, AttributeSet attributeSet, int i, int i2) { super(context, attributeSet, i, i2); m.checkNotNullParameter(context, "context"); m.checkNotNullParameter(attributeSet, "attrs"); } @Override // androidx.recyclerview.widget.LinearLayoutManager public boolean isLayoutRTL() { return true; } }