- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
21 lines
724 B
Java
21 lines
724 B
Java
package androidx.fragment.app.strictmode;
|
|
|
|
import androidx.fragment.app.Fragment;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class SetUserVisibleHintViolation extends Violation {
|
|
private final boolean isVisibleToUser;
|
|
|
|
public final boolean isVisibleToUser() {
|
|
return this.isVisibleToUser;
|
|
}
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public SetUserVisibleHintViolation(Fragment fragment, boolean z) {
|
|
super(fragment, "Attempting to set user visible hint to " + z + " for fragment " + fragment);
|
|
Intrinsics.checkNotNullParameter(fragment, "fragment");
|
|
this.isVisibleToUser = z;
|
|
}
|
|
}
|