Skip to content

Commit fbb61e9

Browse files
committed
[chore] #192 detekt trailing comma 및 unused import 수정
1 parent 8b9f555 commit fbb61e9

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

feature/map/impl/src/main/java/com/neki/android/feature/map/impl/MapViewModel.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class MapViewModel @Inject constructor(
7979
MapAnalyticsEvent.MapReSearch(
8080
hasFilter = state.brands.any { it.isChecked },
8181
regionChanged = isRegionChanged(intent.center, intent.zoomLevel),
82-
)
82+
),
8383
)
8484
lastSearchCenter = intent.center
8585
reduce { copy(isVisibleRefreshButton = false) }
@@ -233,8 +233,8 @@ class MapViewModel @Inject constructor(
233233
analyticsLogger.log(
234234
MapAnalyticsEvent.BoothSelect(
235235
entryPoint = "bottom_sheet",
236-
brandName = photoBooth.brandName
237-
)
236+
brandName = photoBooth.brandName,
237+
),
238238
)
239239
reduce {
240240
val isAlreadyInMarkers = mapMarkers.any {
@@ -268,7 +268,7 @@ class MapViewModel @Inject constructor(
268268
DirectionApp.NAVER_MAP -> "naver_map"
269269
DirectionApp.GOOGLE_MAP -> "google_map"
270270
},
271-
)
271+
),
272272
)
273273
reduce { copy(isShowDirectionBottomSheet = false) }
274274
if (state.currentLocLatLng == null) {
@@ -298,8 +298,8 @@ class MapViewModel @Inject constructor(
298298
analyticsLogger.log(
299299
MapAnalyticsEvent.BoothSelect(
300300
entryPoint = "map",
301-
brandName = booth.brandName
302-
)
301+
brandName = booth.brandName,
302+
),
303303
)
304304
}
305305
reduce {

feature/select-album/impl/src/main/java/com/neki/android/feature/select_album/impl/SelectAlbumViewModel.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ class SelectAlbumViewModel @AssistedInject constructor(
138138
is SelectAlbumAction.UploadFromQR -> "qr"
139139
is SelectAlbumAction.UploadFromGallery -> "gallery"
140140
},
141-
count = photoCount
142-
)
141+
count = photoCount,
142+
),
143143
)
144144

145145
postSideEffect(SelectAlbumSideEffect.ShowToastMessage("이미지를 추가했어요"))

0 commit comments

Comments
 (0)