Skip to content

Commit 74dcec9

Browse files
committed
CHORE: ktlint 적용
1 parent 24bcf52 commit 74dcec9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

presentation/src/main/java/com/threegap/bitnagil/presentation/report/ReportViewModel.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ class ReportViewModel @Inject constructor(
3636

3737
fun updateReportTitle(title: String) {
3838
intent {
39-
if (title.length > ReportState.MAX_TITLE_LENGTH) return@intent;
39+
if (title.length > ReportState.MAX_TITLE_LENGTH) return@intent
4040
reduce { state.copy(reportTitle = title) }
4141
}
4242
}
4343

4444
fun updateReportContent(content: String) {
4545
intent {
46-
if (content.length > ReportState.MAX_CONTENT_LENGTH) return@intent;
46+
if (content.length > ReportState.MAX_CONTENT_LENGTH) return@intent
4747
reduce { state.copy(reportContent = content) }
4848
}
4949
}

0 commit comments

Comments
 (0)