refactor: remove "" and other comments

This commit is contained in:
2023-09-27 18:17:45 +08:00
parent 418fd9de00
commit 18172145ef
47 changed files with 415 additions and 451 deletions

View File

@@ -295,11 +295,11 @@ encase {
```kotlin
encase {
// 错误的使用方法,不能直接开始 Hook
// 错误的使用方法,不能直接开始 Hook
findClass(name = "com.example.demo.DemoClass").hook {
// ...
}
// 错误的使用方法,不能直接开始 Hook
// 错误的使用方法,不能直接开始 Hook
resources().hook {
// ...
}
@@ -324,7 +324,7 @@ object HookEntry : IYukiHookXposedInit {
object CustomHooker : YukiBaseHooker() {
override fun onHook() {
// 错误的使用方法,由于外层没有任何判断对象,不能直接开始 Hook
// 错误的使用方法,由于外层没有任何判断对象,不能直接开始 Hook
findClass(name = "com.example.demo.DemoClass").hook {
// ...
}