Minor cleanup
This commit is contained in:
parent
37b5b2f2e1
commit
bda2f81c66
@ -60,7 +60,7 @@ data class Manga(
|
||||
get() = customMangaInfo?.genre ?: ogGenre
|
||||
|
||||
val status: Long
|
||||
get() = customMangaInfo?.statusLong ?: ogStatus
|
||||
get() = customMangaInfo?.status ?: ogStatus
|
||||
// SY <--
|
||||
|
||||
val sorting: Long
|
||||
|
@ -103,7 +103,6 @@ class CustomMangaManager(val context: Context) {
|
||||
val genreString by lazy {
|
||||
genre?.joinToString()
|
||||
}
|
||||
val statusLong = status?.toLong()
|
||||
|
||||
fun toJson(): MangaJson {
|
||||
return MangaJson(
|
||||
|
@ -61,11 +61,13 @@ class MergedSource : HttpSource() {
|
||||
override fun chapterListParse(response: Response) = throw UnsupportedOperationException()
|
||||
override fun pageListParse(response: Response) = throw UnsupportedOperationException()
|
||||
override fun imageUrlParse(response: Response) = throw UnsupportedOperationException()
|
||||
|
||||
@Deprecated("Use the 1.x API instead", replaceWith = ReplaceWith("getChapterList"))
|
||||
override fun fetchChapterList(manga: SManga) = throw UnsupportedOperationException()
|
||||
override suspend fun getChapterList(manga: SManga) = throw UnsupportedOperationException()
|
||||
override fun fetchImage(page: Page) = throw UnsupportedOperationException()
|
||||
override fun fetchImageUrl(page: Page) = throw UnsupportedOperationException()
|
||||
|
||||
@Deprecated("Use the 1.x API instead", replaceWith = ReplaceWith("getPageList"))
|
||||
override fun fetchPageList(chapter: SChapter) = throw UnsupportedOperationException()
|
||||
override suspend fun getPageList(chapter: SChapter) = throw UnsupportedOperationException()
|
||||
|
Loading…
x
Reference in New Issue
Block a user