mirror of https://github.com/usbharu/Hideout.git
style: fix lint (CI)
This commit is contained in:
parent
57430b7e4a
commit
88ab8d23df
|
@ -160,36 +160,34 @@ class Actor(
|
||||||
|
|
||||||
override fun toString(): String {
|
override fun toString(): String {
|
||||||
return "Actor(" +
|
return "Actor(" +
|
||||||
"id=$id, " +
|
"id=$id, " +
|
||||||
"name=$name, " +
|
"name=$name, " +
|
||||||
"domain=$domain, " +
|
"domain=$domain, " +
|
||||||
"inbox=$inbox, " +
|
"inbox=$inbox, " +
|
||||||
"outbox=$outbox, " +
|
"outbox=$outbox, " +
|
||||||
"url=$url, " +
|
"url=$url, " +
|
||||||
"publicKey=$publicKey, " +
|
"publicKey=$publicKey, " +
|
||||||
"privateKey=$privateKey, " +
|
"privateKey=$privateKey, " +
|
||||||
"createdAt=$createdAt, " +
|
"createdAt=$createdAt, " +
|
||||||
"keyId=$keyId, " +
|
"keyId=$keyId, " +
|
||||||
"followersEndpoint=$followersEndpoint, " +
|
"followersEndpoint=$followersEndpoint, " +
|
||||||
"followingEndpoint=$followingEndpoint, " +
|
"followingEndpoint=$followingEndpoint, " +
|
||||||
"instance=$instance, " +
|
"instance=$instance, " +
|
||||||
"locked=$locked, " +
|
"locked=$locked, " +
|
||||||
"followersCount=$followersCount, " +
|
"followersCount=$followersCount, " +
|
||||||
"followingCount=$followingCount, " +
|
"followingCount=$followingCount, " +
|
||||||
"postsCount=$postsCount, " +
|
"postsCount=$postsCount, " +
|
||||||
"lastPostAt=$lastPostAt, " +
|
"lastPostAt=$lastPostAt, " +
|
||||||
"lastUpdateAt=$lastUpdateAt, " +
|
"lastUpdateAt=$lastUpdateAt, " +
|
||||||
"banner=$banner, " +
|
"banner=$banner, " +
|
||||||
"icon=$icon, " +
|
"icon=$icon, " +
|
||||||
"suspend=$suspend, " +
|
"suspend=$suspend, " +
|
||||||
"alsoKnownAs=$alsoKnownAs, " +
|
"alsoKnownAs=$alsoKnownAs, " +
|
||||||
"moveTo=$moveTo, " +
|
"moveTo=$moveTo, " +
|
||||||
"emojis=$emojis, " +
|
"emojis=$emojis, " +
|
||||||
"description=$description, " +
|
"description=$description, " +
|
||||||
"screenName=$screenName, " +
|
"screenName=$screenName, " +
|
||||||
"deleted=$deleted" +
|
"deleted=$deleted" +
|
||||||
")"
|
")"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue