File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
app/src/main/java/com/klee/sapio/ui/viewmodel Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package com.klee.sapio.ui.viewmodel
22
33import androidx.lifecycle.ViewModel
44import com.klee.sapio.data.Evaluation
5- import com.klee.sapio.domain.FetchIconUrlUseCase
65import com.klee.sapio.domain.ListLatestEvaluationsUseCase
76import dagger.hilt.android.lifecycle.HiltViewModel
87import kotlinx.coroutines.flow.Flow
@@ -19,9 +18,6 @@ class FeedViewModel @Inject constructor() : ViewModel() {
1918 @Inject
2019 lateinit var listLatestEvaluationsUseCase: ListLatestEvaluationsUseCase
2120
22- @Inject
23- lateinit var fetchIconUrlUseCase: FetchIconUrlUseCase
24-
2521 val evaluations: Flow <List <Evaluation >> = flow {
2622 for (i in 1 .. NUMBER_OF_PAGES ) {
2723 emit(listLatestEvaluationsUseCase.invoke(i))
You can’t perform that action at this time.
0 commit comments