ktlint: Drop unused trailing commas

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta 2026-01-21 16:48:46 +08:00
parent d6f3dee9f4
commit c76d14dfd4
25 changed files with 58 additions and 60 deletions

View file

@ -14,6 +14,6 @@ interface LocalItem {
PLAYLIST_REMOTE_ITEM,
PLAYLIST_STREAM_ITEM,
STATISTIC_STREAM_ITEM,
STATISTIC_STREAM_ITEM
}
}

View file

@ -29,7 +29,7 @@ data class SearchHistoryEntry @JvmOverloads constructor(
@ColumnInfo(name = ID)
@PrimaryKey(autoGenerate = true)
val id: Long = 0,
val id: Long = 0
) {
@Ignore

View file

@ -35,7 +35,7 @@ data class StreamHistoryEntry(
streamEntity.serviceId,
streamEntity.url,
streamEntity.title,
streamEntity.streamType,
streamEntity.streamType
).apply {
duration = streamEntity.duration
uploaderName = streamEntity.uploader

View file

@ -37,7 +37,7 @@ data class PlaylistEntity @JvmOverloads constructor(
name = item.orderingName,
isThumbnailPermanent = item.isThumbnailPermanent!!,
thumbnailStreamId = item.thumbnailStreamId!!,
displayIndex = item.displayIndex!!,
displayIndex = item.displayIndex!!
)
companion object {