diff --git a/hideout-core/src/main/kotlin/dev/usbharu/hideout/core/domain/model/actor/Actor.kt b/hideout-core/src/main/kotlin/dev/usbharu/hideout/core/domain/model/actor/Actor.kt index 77361e77..5823b111 100644 --- a/hideout-core/src/main/kotlin/dev/usbharu/hideout/core/domain/model/actor/Actor.kt +++ b/hideout-core/src/main/kotlin/dev/usbharu/hideout/core/domain/model/actor/Actor.kt @@ -160,36 +160,34 @@ class Actor( override fun toString(): String { return "Actor(" + - "id=$id, " + - "name=$name, " + - "domain=$domain, " + - "inbox=$inbox, " + - "outbox=$outbox, " + - "url=$url, " + - "publicKey=$publicKey, " + - "privateKey=$privateKey, " + - "createdAt=$createdAt, " + - "keyId=$keyId, " + - "followersEndpoint=$followersEndpoint, " + - "followingEndpoint=$followingEndpoint, " + - "instance=$instance, " + - "locked=$locked, " + - "followersCount=$followersCount, " + - "followingCount=$followingCount, " + - "postsCount=$postsCount, " + - "lastPostAt=$lastPostAt, " + - "lastUpdateAt=$lastUpdateAt, " + - "banner=$banner, " + - "icon=$icon, " + - "suspend=$suspend, " + - "alsoKnownAs=$alsoKnownAs, " + - "moveTo=$moveTo, " + - "emojis=$emojis, " + - "description=$description, " + - "screenName=$screenName, " + - "deleted=$deleted" + - ")" + "id=$id, " + + "name=$name, " + + "domain=$domain, " + + "inbox=$inbox, " + + "outbox=$outbox, " + + "url=$url, " + + "publicKey=$publicKey, " + + "privateKey=$privateKey, " + + "createdAt=$createdAt, " + + "keyId=$keyId, " + + "followersEndpoint=$followersEndpoint, " + + "followingEndpoint=$followingEndpoint, " + + "instance=$instance, " + + "locked=$locked, " + + "followersCount=$followersCount, " + + "followingCount=$followingCount, " + + "postsCount=$postsCount, " + + "lastPostAt=$lastPostAt, " + + "lastUpdateAt=$lastUpdateAt, " + + "banner=$banner, " + + "icon=$icon, " + + "suspend=$suspend, " + + "alsoKnownAs=$alsoKnownAs, " + + "moveTo=$moveTo, " + + "emojis=$emojis, " + + "description=$description, " + + "screenName=$screenName, " + + "deleted=$deleted" + + ")" } - - }