remove comments

Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
This commit is contained in:
sowjanyakch 2024-10-22 20:37:43 +02:00
parent fda055ee52
commit 074297ca42
No known key found for this signature in database
GPG Key ID: F7AA2A8B65B50220

View File

@ -355,7 +355,6 @@ class ConversationInfoActivity :
reconfigureLobbyTimerView() reconfigureLobbyTimerView()
binding.webinarInfoView.startTimeButton.setOnClickListener { binding.webinarInfoView.startTimeButton.setOnClickListener {
// First, show the calendar dialog
MaterialDialog(this, BottomSheet(WRAP_CONTENT)).show { MaterialDialog(this, BottomSheet(WRAP_CONTENT)).show {
val currentTimeCalendar = Calendar.getInstance() val currentTimeCalendar = Calendar.getInstance()
if (conversation!!.lobbyTimer != 0L) { if (conversation!!.lobbyTimer != 0L) {
@ -363,7 +362,6 @@ class ConversationInfoActivity :
} }
datePicker { _, date -> datePicker { _, date ->
// After selecting the date, now show the time picker
showTimePicker(date) showTimePicker(date)
} }
} }