Skip to content

Commit 6c26abb

Browse files
author
sds100
committed
fix: missing constructor parameter
1 parent 2ae78af commit 6c26abb

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

app/src/main/java/com/mapcode/map/ShowMapcodeUseCase.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ import kotlin.Result.Companion.success
4646
import kotlin.coroutines.resume
4747
import kotlin.coroutines.suspendCoroutine
4848

49-
class ShowMapcodeUseCaseImpl @Inject constructor(@ApplicationContext private val ctx: Context) : ShowMapcodeUseCase {
49+
class ShowMapcodeUseCaseImpl @Inject constructor(
50+
@ApplicationContext private val ctx: Context,
51+
private val coroutineScope: CoroutineScope
52+
) : ShowMapcodeUseCase {
5053

5154
private val geocoder: Geocoder = Geocoder(ctx)
5255
private val fusedLocationClient: FusedLocationProviderClient =

0 commit comments

Comments
 (0)