Fix change problem function return type to Nothing to solve the problem of no return value error in YukiHookXposedProcessor

This commit is contained in:
2022-12-31 22:20:16 +08:00
parent f1ad0e15b4
commit b3028e50ea

View File

@@ -82,8 +82,9 @@ class YukiHookXposedProcessor : SymbolProcessorProvider {
/** /**
* 终止并报错 * 终止并报错
* @param msg 错误消息 * @param msg 错误消息
* @return [Nothing]
*/ */
private fun SymbolProcessorEnvironment.problem(msg: String) { private fun SymbolProcessorEnvironment.problem(msg: String): Nothing {
val helpMsg = "Looking for help? Please see the documentation link below\n" + val helpMsg = "Looking for help? Please see the documentation link below\n" +
"- English: https://fankes.github.io/YukiHookAPI/en/config/xposed-using\n" + "- English: https://fankes.github.io/YukiHookAPI/en/config/xposed-using\n" +
"- Chinese(Simplified): https://fankes.github.io/YukiHookAPI/zh-cn/config/xposed-using" "- Chinese(Simplified): https://fankes.github.io/YukiHookAPI/zh-cn/config/xposed-using"