Files
rr3-apk/decompiled/sources/kotlinx/coroutines/internal/SegmentOrClosed.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

26 lines
944 B
Java

package kotlinx.coroutines.internal;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes5.dex */
public abstract class SegmentOrClosed {
/* renamed from: constructor-impl, reason: not valid java name */
public static Object m4150constructorimpl(Object obj) {
return obj;
}
/* renamed from: isClosed-impl, reason: not valid java name */
public static final boolean m4152isClosedimpl(Object obj) {
return obj == ConcurrentLinkedListKt.CLOSED;
}
/* renamed from: getSegment-impl, reason: not valid java name */
public static final Segment m4151getSegmentimpl(Object obj) {
if (obj == ConcurrentLinkedListKt.CLOSED) {
throw new IllegalStateException("Does not contain segment".toString());
}
Intrinsics.checkNotNull(obj, "null cannot be cast to non-null type S of kotlinx.coroutines.internal.SegmentOrClosed");
return (Segment) obj;
}
}