Skip to content

Commit

Permalink
Fix Ktlint error
Browse files Browse the repository at this point in the history
  • Loading branch information
rkdmf1026 committed Jul 14, 2023
1 parent d1777cc commit 8b91176
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class CreateShortGameActivity :
private val missionAdapter by lazy {
MissionCategoryAdapter(
goToMissionDetailClickListener = { missionIdPosition ->
//TODO : 미션상세뷰 이동
// TODO : 미션상세뷰 이동
},
selectMissionClickListener = { missionIdPosition ->
selectItem(missionIdPosition.id, missionIdPosition.position)
Expand Down Expand Up @@ -69,10 +69,10 @@ class CreateShortGameActivity :
private fun setClickListener() {
binding.apply {
ivClose.setOnClickListener {
//TODO : 종료 다이얼로그
// TODO : 종료 다이얼로그
}
btnCreate.setOnClickListener {
//TODO : 생성 다이얼로그 + 미션 기록 액티비티 이동
// TODO : 생성 다이얼로그 + 미션 기록 액티비티 이동
}
}
}
Expand Down Expand Up @@ -107,4 +107,3 @@ class CreateShortGameActivity :
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class MissionCategoryAdapter(
onItemsTheSame = { old, new -> old == new },
),
) {
private var selectedPosition = 0;
private var selectedPosition = 0
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): MissionViewHolder {
val binding =
ItemMissionBinding.inflate(LayoutInflater.from(parent.context), parent, false)
Expand Down

0 comments on commit 8b91176

Please sign in to comment.