mirror of https://github.com/usbharu/Hideout.git
style: fix lint (CI)
This commit is contained in:
parent
e15380c96c
commit
76abc69c6c
|
@ -38,7 +38,6 @@ class Media(
|
||||||
this.url = url
|
this.url = url
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
override fun equals(other: Any?): Boolean {
|
override fun equals(other: Any?): Boolean {
|
||||||
if (this === other) return true
|
if (this === other) return true
|
||||||
if (javaClass != other?.javaClass) return false
|
if (javaClass != other?.javaClass) return false
|
||||||
|
@ -54,18 +53,16 @@ class Media(
|
||||||
|
|
||||||
override fun toString(): String {
|
override fun toString(): String {
|
||||||
return "Media(" +
|
return "Media(" +
|
||||||
"id=$id, " +
|
"id=$id, " +
|
||||||
"name=$name, " +
|
"name=$name, " +
|
||||||
"remoteUrl=$remoteUrl, " +
|
"remoteUrl=$remoteUrl, " +
|
||||||
"thumbnailUrl=$thumbnailUrl, " +
|
"thumbnailUrl=$thumbnailUrl, " +
|
||||||
"type=$type, " +
|
"type=$type, " +
|
||||||
"mimeType=$mimeType, " +
|
"mimeType=$mimeType, " +
|
||||||
"blurHash=$blurHash, " +
|
"blurHash=$blurHash, " +
|
||||||
"description=$description, " +
|
"description=$description, " +
|
||||||
"actorId=$actorId, " +
|
"actorId=$actorId, " +
|
||||||
"url=$url" +
|
"url=$url" +
|
||||||
")"
|
")"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue