Files
rr3-apk/decompiled/sources/androidx/fragment/app/strictmode/FragmentReuseViolation.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

22 lines
855 B
Java

package androidx.fragment.app.strictmode;
import androidx.fragment.app.Fragment;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public final class FragmentReuseViolation extends Violation {
private final String previousFragmentId;
public final String getPreviousFragmentId() {
return this.previousFragmentId;
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public FragmentReuseViolation(Fragment fragment, String previousFragmentId) {
super(fragment, "Attempting to reuse fragment " + fragment + " with previous ID " + previousFragmentId);
Intrinsics.checkNotNullParameter(fragment, "fragment");
Intrinsics.checkNotNullParameter(previousFragmentId, "previousFragmentId");
this.previousFragmentId = previousFragmentId;
}
}