- 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
19 lines
504 B
Java
19 lines
504 B
Java
package kotlin;
|
|
|
|
import kotlin.Result;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public abstract class ResultKt {
|
|
public static final Object createFailure(Throwable exception) {
|
|
Intrinsics.checkNotNullParameter(exception, "exception");
|
|
return new Result.Failure(exception);
|
|
}
|
|
|
|
public static final void throwOnFailure(Object obj) {
|
|
if (obj instanceof Result.Failure) {
|
|
throw ((Result.Failure) obj).exception;
|
|
}
|
|
}
|
|
}
|