- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
12 lines
339 B
Java
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());
|
|
}
|
|
}
|