From 611aaf0d38e72fde17c31e3a1fdbf830428128f5 Mon Sep 17 00:00:00 2001 From: devi Date: Sun, 17 Sep 2023 10:52:27 +0200 Subject: [PATCH] remove mirrordesu --- .../parsers/site/mangareader/id/Mirrordesu.kt | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/id/Mirrordesu.kt diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/id/Mirrordesu.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/id/Mirrordesu.kt deleted file mode 100644 index 264186a2..00000000 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/mangareader/id/Mirrordesu.kt +++ /dev/null @@ -1,16 +0,0 @@ -package org.koitharu.kotatsu.parsers.site.mangareader.id - -import org.koitharu.kotatsu.parsers.MangaLoaderContext -import org.koitharu.kotatsu.parsers.MangaSourceParser -import org.koitharu.kotatsu.parsers.model.ContentType -import org.koitharu.kotatsu.parsers.model.MangaSource -import org.koitharu.kotatsu.parsers.site.mangareader.MangaReaderParser - -@MangaSourceParser("MIRRORDESU", "Mirrordesu", "id", ContentType.HENTAI) -internal class Mirrordesu(context: MangaLoaderContext) : - MangaReaderParser(context, MangaSource.MIRRORDESU, "mirrordesu.ink", pageSize = 20, searchPageSize = 20) { - - override val listUrl = "/komik" - override val datePattern = "MMM d, yyyy" - -}