From 1a63c13680b29562d8b797152f80bdf5bf2ac92f Mon Sep 17 00:00:00 2001 From: Rinat Nurmukhametov Date: Mon, 16 Aug 2021 14:40:12 +0300 Subject: [PATCH] changed the location of the parameters --- .../main/java/ru/touchin/roboswag/mvi_arch/core/IMvi.kt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/mvi-arch/src/main/java/ru/touchin/roboswag/mvi_arch/core/IMvi.kt b/mvi-arch/src/main/java/ru/touchin/roboswag/mvi_arch/core/IMvi.kt index e30d1ed..44a2125 100644 --- a/mvi-arch/src/main/java/ru/touchin/roboswag/mvi_arch/core/IMvi.kt +++ b/mvi-arch/src/main/java/ru/touchin/roboswag/mvi_arch/core/IMvi.kt @@ -9,11 +9,8 @@ import ru.touchin.roboswag.mvi_arch.marker.ViewState /** * Interface with the main MVI methods and fields */ -interface IMvi - where NavArgs : Parcelable, - State : ViewState, - Action : ViewAction, - VM : MviViewModel { +interface IMvi + where VM : MviViewModel { /** * Use [viewModel] extension to get an instance of your view model class.