Skip to content

Commit 04f701b

Browse files
committed
Merge remote-tracking branch 'origin/22-feature-mission-bus-line' into 22-feature-mission-bus-line
2 parents f0d8b39 + f951351 commit 04f701b

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

data/src/main/java/com/stop/data/remote/model/nowlocation/BusInfo.kt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ data class BusInfo(
1919
val isRun: String,
2020
) {
2121
fun toRepositoryModel() = BusInfoRepositoryItem(
22-
isArrivedAtStation,
23-
sectionId,
24-
latitude,
25-
longitude,
26-
busId,
27-
busNumber,
28-
isRun
22+
isArrivedAtStation = isArrivedAtStation,
23+
sectionId = sectionId,
24+
latitude = latitude,
25+
longitude = longitude,
26+
busId = busId,
27+
busNumber = busNumber,
28+
isRun = isRun,
2929
)
3030
}

data/src/main/java/com/stop/data/remote/network/WsBusApiService.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ internal interface WsBusApiService {
1717

1818
@GET(GET_BUS_NOW_LOCATION_URL)
1919
suspend fun getBusNowLocation(
20-
@Query("ServiceKey") serviceKey: String = BuildConfig.BUS_KEY,
2120
@Query("busRouteId") busRouteId: String,
2221
@Query("resultType") resultType: String = JSON
2322
): NetworkResult<GetBusNowLocationResponse>

0 commit comments

Comments
 (0)