- 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
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;
|
|
}
|
|
}
|