Changed constructor to package private

This commit is contained in:
2022-05-17 01:32:21 +08:00
parent 2e03a557d6
commit 6608c2b6c6
32 changed files with 74 additions and 63 deletions

View File

@@ -1,7 +1,7 @@
## HookParam [class]
```kotlin
class HookParam(private val createrInstance: YukiMemberHookCreater, private var wrapper: HookParamWrapper?)
class HookParam internal constructor(private val createrInstance: YukiMemberHookCreater, private var wrapper: HookParamWrapper?)
```
**变更记录**
@@ -335,7 +335,7 @@ fun resultNull()
### ArgsIndexCondition [class]
```kotlin
inner class ArgsIndexCondition
inner class ArgsIndexCondition internal constructor()
```
**变更记录**
@@ -377,7 +377,7 @@ fun last(): ArgsModifyer
### ArgsModifyer [class]
```kotlin
inner class ArgsModifyer(private val index: Int)
inner class ArgsModifyer internal constructor(private val index: Int)
```
**变更记录**