[dev_arch_opt_3.0] 代码逻辑优化

This commit is contained in:
renwj
2023-03-15 15:37:03 +08:00
parent a994018fbe
commit 16388def88

View File

@@ -28,7 +28,7 @@ class CrashFix {
@ReplaceInvoke
fun fixStartServiceCrash(context: Context, intent: Intent): ComponentName? {
return try {
return context.startService(intent)
context.startService(intent)
} catch (t: Throwable) {
t.printStackTrace()
null