Files
rr3-apk/decompiled-community/sources/androidx/fragment/app/strictmode/Violation.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

26 lines
840 B
Java

package androidx.fragment.app.strictmode;
import androidx.fragment.app.Fragment;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public abstract class Violation extends RuntimeException {
private final Fragment fragment;
public final Fragment getFragment() {
return this.fragment;
}
public /* synthetic */ Violation(Fragment fragment, String str, int i, DefaultConstructorMarker defaultConstructorMarker) {
this(fragment, (i & 2) != 0 ? null : str);
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public Violation(Fragment fragment, String str) {
super(str);
Intrinsics.checkNotNullParameter(fragment, "fragment");
this.fragment = fragment;
}
}