- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
22 lines
855 B
Java
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;
|
|
}
|
|
}
|