Format files.

This commit is contained in:
Benoit Marty 2025-09-08 16:45:54 +02:00
parent f0291b21da
commit 88f38a0523
2 changed files with 6 additions and 6 deletions

View file

@ -21,11 +21,11 @@ import io.element.android.libraries.architecture.Presenter
import kotlinx.collections.immutable.toImmutableList
@Inject
class ViewFolderPresenter(
class ViewFolderPresenter(
@Assisted val canGoUp: Boolean,
@Assisted val path: String,
private val folderExplorer: FolderExplorer,
) : Presenter<ViewFolderState> {
) : Presenter<ViewFolderState> {
@AssistedFactory
interface Factory {
fun create(canGoUp: Boolean, path: String): ViewFolderPresenter
@ -45,4 +45,4 @@ import kotlinx.collections.immutable.toImmutableList
content = content.toImmutableList(),
)
}
}
}