Changed constructor to package private in bean

This commit is contained in:
2022-05-20 23:43:24 +08:00
parent 117a868c54
commit a46d68a934
6 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
## HookClass [class]
```kotlin
class HookClass(var instance: Class<*>?, var name: String, var throwable: Throwable?)
class HookClass internal constructor(var instance: Class<*>?, var name: String, var throwable: Throwable?)
```
**变更记录**