fix: toStringを修正

This commit is contained in:
usbharu 2024-01-16 14:38:47 +09:00
parent 5e6843e883
commit 70831ab2a9
1 changed files with 6 additions and 1 deletions

View File

@ -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()}"
}
}