Remove unused variable in CrashReporter.

This commit is contained in:
Sergei Bolotov 2024-07-18 22:47:39 -07:00
parent 1a9d905a32
commit f1da5f5dcc

View File

@ -31,7 +31,6 @@ object CrashReporter {
}
suspend fun getCrashReport(filePath: String): CrashReport {
val path = CrashReporter.getCrashReportPath()?.takeIf { it.isEmpty() } ?: CrashUtil.getDefaultPath()
return CrashReport.fromFile(File(filePath), true)
}