- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
28 lines
830 B
Java
28 lines
830 B
Java
package kotlinx.coroutines;
|
|
|
|
import kotlin.Result;
|
|
import kotlin.Unit;
|
|
import kotlin.coroutines.Continuation;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class ResumeOnCompletion extends JobNode {
|
|
public final Continuation continuation;
|
|
|
|
@Override // kotlin.jvm.functions.Function1
|
|
public /* bridge */ /* synthetic */ Object invoke(Object obj) {
|
|
invoke((Throwable) obj);
|
|
return Unit.INSTANCE;
|
|
}
|
|
|
|
public ResumeOnCompletion(Continuation continuation) {
|
|
this.continuation = continuation;
|
|
}
|
|
|
|
@Override // kotlinx.coroutines.CompletionHandlerBase
|
|
public void invoke(Throwable th) {
|
|
Continuation continuation = this.continuation;
|
|
Result.Companion companion = Result.Companion;
|
|
continuation.resumeWith(Result.m4060constructorimpl(Unit.INSTANCE));
|
|
}
|
|
}
|