Fix AppInfo#getVersionCode signature

This commit is contained in:
arkon 2022-06-05 12:18:19 -04:00
parent 150ba5f7c5
commit c5575838fb

View File

@ -1,6 +1,6 @@
package eu.kanade.tachiyomi
object AppInfo {
fun getVersionCode(): String = throw Exception("Stub!")
fun getVersionCode(): Int = throw Exception("Stub!")
fun getVersionName(): String = throw Exception("Stub!")
}