- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
24 lines
751 B
Java
24 lines
751 B
Java
package androidx.work;
|
|
|
|
import kotlin.coroutines.Continuation;
|
|
import kotlin.coroutines.jvm.internal.ContinuationImpl;
|
|
import kotlin.coroutines.jvm.internal.DebugMetadata;
|
|
|
|
@DebugMetadata(c = "androidx.work.OperationKt", f = "Operation.kt", l = {36}, m = "await")
|
|
/* loaded from: classes.dex */
|
|
public final class OperationKt$await$1 extends ContinuationImpl {
|
|
int label;
|
|
/* synthetic */ Object result;
|
|
|
|
public OperationKt$await$1(Continuation continuation) {
|
|
super(continuation);
|
|
}
|
|
|
|
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
|
|
public final Object invokeSuspend(Object obj) {
|
|
this.result = obj;
|
|
this.label |= Integer.MIN_VALUE;
|
|
return OperationKt.await(null, this);
|
|
}
|
|
}
|