Skip to content

Commit 071bf9e

Browse files
committed
Re-order imports lexical order
1 parent d85f247 commit 071bf9e

File tree

2 files changed

+2
-2
lines changed
  • modules/common/ui
    • features/profile/src/main/kotlin/githubprofilesearcher/caiodev/com/br/githubprofilesearcher/ui/profile/viewModel
    • ui/src/main/kotlin/githubprofilesearcher/caiodev/com/br/githubprofilesearcher/ui/extensions

2 files changed

+2
-2
lines changed

modules/common/ui/features/profile/src/main/kotlin/githubprofilesearcher/caiodev/com/br/githubprofilesearcher/ui/profile/viewModel/ProfileViewModel.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import githubprofilesearcher.caiodev.com.br.githubprofilesearcher.ui.extensions.
88
import githubprofilesearcher.caiodev.com.br.githubprofilesearcher.ui.extensions.runTaskOnBackground
99
import githubprofilesearcher.caiodev.com.br.githubprofilesearcher.ui.profile.uiState.ProfileUIState
1010
import githubprofilesearcher.caiodev.com.br.githubprofilesearcher.ui.profile.uiState.mapToProfileUIState
11-
import kotlin.coroutines.CoroutineContext
1211
import kotlinx.coroutines.flow.SharedFlow
12+
import kotlin.coroutines.CoroutineContext
1313

1414
internal class ProfileViewModel(
1515
private val dispatcher: CoroutineContext,

modules/common/ui/ui/src/main/kotlin/githubprofilesearcher/caiodev/com/br/githubprofilesearcher/ui/extensions/ViewModel.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package githubprofilesearcher.caiodev.com.br.githubprofilesearcher.ui.extensions
33
import androidx.lifecycle.ViewModel
44
import androidx.lifecycle.viewModelScope
55
import githubprofilesearcher.caiodev.com.br.githubprofilesearcher.core.types.number.one
6+
import kotlin.coroutines.CoroutineContext
67
import kotlinx.coroutines.ensureActive
78
import kotlinx.coroutines.flow.MutableSharedFlow
89
import kotlinx.coroutines.isActive
910
import kotlinx.coroutines.launch
10-
import kotlin.coroutines.CoroutineContext
1111

1212
inline fun ViewModel.runTaskOnBackground(
1313
dispatcher: CoroutineContext,

0 commit comments

Comments
 (0)