Remove support for backup v1

(cherry picked from commit 88aea311f810f1dbaeb092abe126bd32af7874fe)
This commit is contained in:
arkon 2020-09-20 10:35:05 -04:00 committed by Jobobby04
parent a87f6811e5
commit 4aff2d79b7

View File

@ -107,7 +107,6 @@ class BackupManager(val context: Context, version: Int = CURRENT_VERSION) {
}
private fun initParser(): Gson = when (version) {
1 -> GsonBuilder().create()
2 ->
GsonBuilder()
.registerTypeAdapter<MangaImpl>(MangaTypeAdapter.build())
@ -119,7 +118,7 @@ class BackupManager(val context: Context, version: Int = CURRENT_VERSION) {
.registerTypeAdapter<MergedMangaReference>(MergedMangaReferenceTypeAdapter.build())
// SY <--
.create()
else -> throw Exception("Json version unknown")
else -> throw Exception("Unknown backup version")
}
/**