mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-06-05 21:59:17 +02:00
remove a redundant function
This commit is contained in:
@@ -34,17 +34,13 @@ class ManageEventTypesActivity : SimpleActivity(), DeleteItemsListener {
|
||||
private fun getEventTypes() {
|
||||
DBHelper.newInstance(applicationContext).getEventTypes {
|
||||
runOnUiThread {
|
||||
gotEventTypes(it)
|
||||
manage_event_types_list.adapter = EventTypeAdapter(this, it, this) {
|
||||
showEventTypeDialog(it)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun gotEventTypes(eventTypes: List<EventType>) {
|
||||
manage_event_types_list.adapter = EventTypeAdapter(this, eventTypes, this) {
|
||||
showEventTypeDialog(it)
|
||||
}
|
||||
}
|
||||
|
||||
override fun deleteItems(ids: ArrayList<Int>) {
|
||||
if (ids.contains(DBHelper.REGULAR_EVENT_TYPE_ID)) {
|
||||
toast(R.string.cannot_delete_default_type)
|
||||
|
Reference in New Issue
Block a user