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

12 lines
339 B
Java

package kotlinx.coroutines.internal;
/* loaded from: classes5.dex */
public abstract class LimitedDispatcherKt {
public static final void checkParallelism(int i) {
if (i >= 1) {
return;
}
throw new IllegalArgumentException(("Expected positive parallelism level, but got " + i).toString());
}
}