Skip to content

Commit

Permalink
Fixed CI detekt errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Splintorien committed Feb 24, 2024
1 parent 4b5b464 commit 925132d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions data/src/main/java/tachiyomi/data/manga/MangaMapper.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import tachiyomi.domain.library.model.LibraryManga
import tachiyomi.domain.manga.model.Manga

object MangaMapper {
@Suppress("LongParameterList")
fun mapManga(
id: Long,
source: Long,
Expand Down Expand Up @@ -61,6 +62,7 @@ object MangaMapper {
customTitle = customTitle,
)

@Suppress("LongParameterList")
fun mapLibraryManga(
id: Long,
source: Long,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class MangaRepositoryImpl(
}
}

override suspend fun updateEditedInfo(update: MangaUpdate) : Boolean {
override suspend fun updateEditedInfo(update: MangaUpdate): Boolean {
handler.await {
mangasQueries.updateMangaEdit(
artist = update.artist,
Expand Down

0 comments on commit 925132d

Please sign in to comment.