- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
14 lines
585 B
Java
14 lines
585 B
Java
package androidx.fragment.app.strictmode;
|
|
|
|
import androidx.fragment.app.Fragment;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class GetTargetFragmentRequestCodeUsageViolation extends TargetFragmentUsageViolation {
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public GetTargetFragmentRequestCodeUsageViolation(Fragment fragment) {
|
|
super(fragment, "Attempting to get target request code from fragment " + fragment);
|
|
Intrinsics.checkNotNullParameter(fragment, "fragment");
|
|
}
|
|
}
|