mirror of https://github.com/usbharu/Hideout.git
fix: toStringを修正
This commit is contained in:
parent
5e6843e883
commit
70831ab2a9
|
@ -35,6 +35,11 @@ open class Follow(
|
|||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return "Follow(apObject='$apObject', actor='$actor', id=$id)"
|
||||
return "Follow(" +
|
||||
"apObject='$apObject', " +
|
||||
"actor='$actor', " +
|
||||
"id=$id" +
|
||||
")" +
|
||||
" ${super.toString()}"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue