Fix space problem of categoriesPresenter.kt

This commit is contained in:
Zihan Pan 2024-10-20 20:11:51 +11:00
parent 1e31497f10
commit 75ec41bdb5

View file

@ -28,12 +28,12 @@ import javax.inject.Singleton
*/ */
@Singleton @Singleton
class CategoriesPresenter class CategoriesPresenter
@Inject @Inject
constructor( constructor(
private val repository: UploadRepository, private val repository: UploadRepository,
@param:Named(CommonsApplicationModule.IO_THREAD) private val ioScheduler: Scheduler, @param:Named(CommonsApplicationModule.IO_THREAD) private val ioScheduler: Scheduler,
@param:Named(CommonsApplicationModule.MAIN_THREAD) private val mainThreadScheduler: Scheduler, @param:Named(CommonsApplicationModule.MAIN_THREAD) private val mainThreadScheduler: Scheduler,
) : CategoriesContract.UserActionListener { ) : CategoriesContract.UserActionListener {
companion object { companion object {
private val DUMMY: CategoriesContract.View = proxy() private val DUMMY: CategoriesContract.View = proxy()
} }
@ -326,4 +326,4 @@ constructor(
.subscribe(::selectNewCategories), .subscribe(::selectNewCategories),
) )
} }
} }