mirror of
https://github.com/usbharu/Hideout.git
synced 2026-09-13 04:33:56 +00:00
style: 名前付き引数を使用するように
This commit is contained in:
@@ -9,7 +9,11 @@ open class Follow : Object {
|
|||||||
name: String,
|
name: String,
|
||||||
`object`: String?,
|
`object`: String?,
|
||||||
actor: String?
|
actor: String?
|
||||||
) : super(add(type, "Follow"), name, actor) {
|
) : super(
|
||||||
|
type = add(type, "Follow"),
|
||||||
|
name = name,
|
||||||
|
actor = actor
|
||||||
|
) {
|
||||||
this.`object` = `object`
|
this.`object` = `object`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user