discord-jadx/app/src/main/java/d0/w/i/a/i.java

23 lines
681 B
Java
Raw Normal View History

2021-11-08 18:25:28 +00:00
package d0.w.i.a;
2021-06-27 20:44:35 +00:00
2021-11-08 18:25:28 +00:00
import d0.w.f;
2021-06-27 20:44:35 +00:00
import kotlin.coroutines.Continuation;
import kotlin.coroutines.CoroutineContext;
/* compiled from: ContinuationImpl.kt */
2022-03-02 20:59:20 +00:00
/* loaded from: classes3.dex */
2021-06-27 20:44:35 +00:00
public abstract class i extends a {
public i(Continuation<Object> continuation) {
super(continuation);
if (continuation != null) {
2021-12-17 22:03:14 +00:00
if (!(continuation.getContext() == f.j)) {
2021-06-27 20:44:35 +00:00
throw new IllegalArgumentException("Coroutines with restricted suspension must have EmptyCoroutineContext".toString());
}
}
}
@Override // kotlin.coroutines.Continuation
public CoroutineContext getContext() {
2021-12-17 22:03:14 +00:00
return f.j;
2021-06-27 20:44:35 +00:00
}
}