Skip to content

Commit 0f53bd1

Browse files
committed
style: tmap을 tMap으로 변경
1 parent 5501287 commit 0f53bd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

data/src/main/java/com/stop/data/remote/source/route/RouteRemoteDataSourceImpl.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import com.stop.domain.model.route.tmap.origin.*
1818
import javax.inject.Inject
1919

2020
internal class RouteRemoteDataSourceImpl @Inject constructor(
21-
private val tmapApiService: TmapApiService,
21+
private val tMapApiService: TmapApiService,
2222
// private val fakeTmapApiService: FakeTmapApiService,
2323
private val openApiSeoulService: OpenApiSeoulService,
2424
private val wsBusApiService: WsBusApiService,
@@ -27,7 +27,7 @@ internal class RouteRemoteDataSourceImpl @Inject constructor(
2727

2828
override suspend fun getRoute(routeRequest: RouteRequest): List<Itinerary> {
2929
with(
30-
tmapApiService.getRoutes(routeRequest.toMap())
30+
tMapApiService.getRoutes(routeRequest.toMap())
3131
) {
3232
return when (this) {
3333
is NetworkResult.Success -> eraseDuplicateLeg(this.data.metaData.plan.itineraries)
@@ -43,7 +43,7 @@ internal class RouteRemoteDataSourceImpl @Inject constructor(
4343
addressType: AddressType
4444
): ReverseGeocodingResponse {
4545
with(
46-
tmapApiService.getReverseGeocoding(
46+
tMapApiService.getReverseGeocoding(
4747
coordinate.latitude,
4848
coordinate.longitude,
4949
addressType = addressType.type

0 commit comments

Comments
 (0)