mirror of https://github.com/usbharu/Hideout.git
style: fix lint (CI)
This commit is contained in:
parent
eed5e8a75a
commit
ac5d6800e1
|
@ -44,13 +44,13 @@ class UserDetail(
|
||||||
override fun hashCode(): Int = id.hashCode()
|
override fun hashCode(): Int = id.hashCode()
|
||||||
override fun toString(): String {
|
override fun toString(): String {
|
||||||
return "UserDetail(" +
|
return "UserDetail(" +
|
||||||
"id=$id, " +
|
"id=$id, " +
|
||||||
"actorId=$actorId, " +
|
"actorId=$actorId, " +
|
||||||
"password=$password, " +
|
"password=$password, " +
|
||||||
"autoAcceptFolloweeFollowRequest=$autoAcceptFolloweeFollowRequest, " +
|
"autoAcceptFolloweeFollowRequest=$autoAcceptFolloweeFollowRequest, " +
|
||||||
"lastMigration=$lastMigration, " +
|
"lastMigration=$lastMigration, " +
|
||||||
"homeTimelineId=$homeTimelineId" +
|
"homeTimelineId=$homeTimelineId" +
|
||||||
")"
|
")"
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
|
@ -80,6 +80,4 @@ open class SnowflakeIdGenerateService(private val baseTime: Long) : IdGenerateSe
|
||||||
result = 31 * result + mutex.hashCode()
|
result = 31 * result + mutex.hashCode()
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue