mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-11 16:00:48 +01:00
Remove unused RxJavaCallAdapterFactory for app updater
This commit is contained in:
parent
f9098b5379
commit
c1235897df
1 changed files with 0 additions and 2 deletions
|
@ -2,7 +2,6 @@ package eu.kanade.tachiyomi.data.updater.github
|
|||
|
||||
import eu.kanade.tachiyomi.network.NetworkHelper
|
||||
import retrofit2.Retrofit
|
||||
import retrofit2.adapter.rxjava.RxJavaCallAdapterFactory
|
||||
import retrofit2.converter.gson.GsonConverterFactory
|
||||
import retrofit2.http.GET
|
||||
import uy.kohesive.injekt.Injekt
|
||||
|
@ -18,7 +17,6 @@ interface GithubService {
|
|||
val restAdapter = Retrofit.Builder()
|
||||
.baseUrl("https://api.github.com")
|
||||
.addConverterFactory(GsonConverterFactory.create())
|
||||
.addCallAdapterFactory(RxJavaCallAdapterFactory.create())
|
||||
.client(Injekt.get<NetworkHelper>().client)
|
||||
.build()
|
||||
|
||||
|
|
Loading…
Reference in a new issue