mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-03 19:04:39 -05:00
add suppress unused class warning
This commit is contained in:
@@ -13,6 +13,7 @@ import org.jetbrains.exposed.dao.id.IntIdTable
|
|||||||
import org.jetbrains.exposed.sql.SchemaUtils
|
import org.jetbrains.exposed.sql.SchemaUtils
|
||||||
import org.jetbrains.exposed.sql.transactions.transaction
|
import org.jetbrains.exposed.sql.transactions.transaction
|
||||||
|
|
||||||
|
@Suppress("ClassName", "unused")
|
||||||
class M0004_AnimeTablesBatch1 : Migration() {
|
class M0004_AnimeTablesBatch1 : Migration() {
|
||||||
private class AnimeExtensionTable : IntIdTable() {
|
private class AnimeExtensionTable : IntIdTable() {
|
||||||
val apkName = varchar("apk_name", 1024)
|
val apkName = varchar("apk_name", 1024)
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import org.jetbrains.exposed.dao.id.IntIdTable
|
|||||||
import org.jetbrains.exposed.sql.SchemaUtils
|
import org.jetbrains.exposed.sql.SchemaUtils
|
||||||
import org.jetbrains.exposed.sql.transactions.transaction
|
import org.jetbrains.exposed.sql.transactions.transaction
|
||||||
|
|
||||||
|
@Suppress("ClassName", "unused")
|
||||||
class M0005_AnimeTablesBatch2 : Migration() {
|
class M0005_AnimeTablesBatch2 : Migration() {
|
||||||
private class AnimeTable : IntIdTable() {
|
private class AnimeTable : IntIdTable() {
|
||||||
val url = varchar("url", 2048)
|
val url = varchar("url", 2048)
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import org.jetbrains.exposed.sql.SchemaUtils
|
|||||||
import org.jetbrains.exposed.sql.transactions.transaction
|
import org.jetbrains.exposed.sql.transactions.transaction
|
||||||
import suwayomi.tachidesk.anime.model.table.AnimeTable
|
import suwayomi.tachidesk.anime.model.table.AnimeTable
|
||||||
|
|
||||||
|
@Suppress("ClassName", "unused")
|
||||||
class M0006_AnimeTablesBatch3 : Migration() {
|
class M0006_AnimeTablesBatch3 : Migration() {
|
||||||
private class EpisodeTable : IntIdTable() {
|
private class EpisodeTable : IntIdTable() {
|
||||||
val url = varchar("url", 2048)
|
val url = varchar("url", 2048)
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ import suwayomi.tachidesk.manga.model.table.MangaTable
|
|||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
@Suppress("ClassName", "unused")
|
||||||
class M0010_MangaAndChapterMeta : Migration() {
|
class M0010_MangaAndChapterMeta : Migration() {
|
||||||
private class ChapterMetaTable : IntIdTable() {
|
private class ChapterMetaTable : IntIdTable() {
|
||||||
val key = varchar("key", 256)
|
val key = varchar("key", 256)
|
||||||
|
|||||||
Reference in New Issue
Block a user