We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34a701a commit 54c4379Copy full SHA for 54c4379
yukihookapi-core/src/main/java/com/highcapable/yukihookapi/hook/core/finder/base/BaseFinder.kt
@@ -106,7 +106,7 @@ abstract class BaseFinder {
106
is String -> runCatching { toClass(loader) }.getOrNull() ?: UndefinedType
107
is VariousClass -> runCatching { get(loader) }.getOrNull() ?: UndefinedType
108
else -> error("$tag match type \"$javaClass\" not allowed")
109
- } as Class<*>?
+ }
110
111
/**
112
* 返回结果实现类
@@ -131,4 +131,4 @@ abstract class BaseFinder {
131
* - 此功能交由方法体自动完成 - 你不应该手动继承此接口
132
*/
133
interface BaseResult
134
-}
+}
0 commit comments