Remove dev update checker

This commit is contained in:
Jobobby04 2020-05-04 16:17:07 -04:00
parent 6b66d4a34c
commit 63ca5cc66b

View File

@ -1,18 +1,12 @@
package eu.kanade.tachiyomi.data.updater
import eu.kanade.tachiyomi.BuildConfig
import eu.kanade.tachiyomi.data.updater.devrepo.DevRepoUpdateChecker
import eu.kanade.tachiyomi.data.updater.github.GithubUpdateChecker
abstract class UpdateChecker {
companion object {
fun getUpdateChecker(): UpdateChecker {
return if (BuildConfig.DEBUG) {
DevRepoUpdateChecker()
} else {
GithubUpdateChecker()
}
return GithubUpdateChecker()
}
}