File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
data/src/main/java/com/stop/data/remote/source/route Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import com.stop.domain.model.route.tmap.origin.*
18
18
import javax.inject.Inject
19
19
20
20
internal class RouteRemoteDataSourceImpl @Inject constructor(
21
- private val tmapApiService : TmapApiService ,
21
+ private val tMapApiService : TmapApiService ,
22
22
// private val fakeTmapApiService: FakeTmapApiService,
23
23
private val openApiSeoulService : OpenApiSeoulService ,
24
24
private val wsBusApiService : WsBusApiService ,
@@ -27,7 +27,7 @@ internal class RouteRemoteDataSourceImpl @Inject constructor(
27
27
28
28
override suspend fun getRoute (routeRequest : RouteRequest ): List <Itinerary > {
29
29
with (
30
- tmapApiService .getRoutes(routeRequest.toMap())
30
+ tMapApiService .getRoutes(routeRequest.toMap())
31
31
) {
32
32
return when (this ) {
33
33
is NetworkResult .Success -> eraseDuplicateLeg(this .data.metaData.plan.itineraries)
@@ -43,7 +43,7 @@ internal class RouteRemoteDataSourceImpl @Inject constructor(
43
43
addressType : AddressType
44
44
): ReverseGeocodingResponse {
45
45
with (
46
- tmapApiService .getReverseGeocoding(
46
+ tMapApiService .getReverseGeocoding(
47
47
coordinate.latitude,
48
48
coordinate.longitude,
49
49
addressType = addressType.type
You can’t perform that action at this time.
0 commit comments