- 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
29 lines
1.0 KiB
Java
29 lines
1.0 KiB
Java
package kotlin;
|
|
|
|
import java.io.PrintWriter;
|
|
import java.io.StringWriter;
|
|
import kotlin.internal.PlatformImplementationsKt;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public abstract class ExceptionsKt__ExceptionsKt {
|
|
public static String stackTraceToString(Throwable th) {
|
|
Intrinsics.checkNotNullParameter(th, "<this>");
|
|
StringWriter stringWriter = new StringWriter();
|
|
PrintWriter printWriter = new PrintWriter(stringWriter);
|
|
th.printStackTrace(printWriter);
|
|
printWriter.flush();
|
|
String stringWriter2 = stringWriter.toString();
|
|
Intrinsics.checkNotNullExpressionValue(stringWriter2, "toString(...)");
|
|
return stringWriter2;
|
|
}
|
|
|
|
public static void addSuppressed(Throwable th, Throwable exception) {
|
|
Intrinsics.checkNotNullParameter(th, "<this>");
|
|
Intrinsics.checkNotNullParameter(exception, "exception");
|
|
if (th != exception) {
|
|
PlatformImplementationsKt.IMPLEMENTATIONS.addSuppressed(th, exception);
|
|
}
|
|
}
|
|
}
|