remove a redundant function
This commit is contained in:
parent
e1b40ba61c
commit
a837ace498
|
@ -34,16 +34,12 @@ class ManageEventTypesActivity : SimpleActivity(), DeleteItemsListener {
|
||||||
private fun getEventTypes() {
|
private fun getEventTypes() {
|
||||||
DBHelper.newInstance(applicationContext).getEventTypes {
|
DBHelper.newInstance(applicationContext).getEventTypes {
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
gotEventTypes(it)
|
manage_event_types_list.adapter = EventTypeAdapter(this, it, this) {
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun gotEventTypes(eventTypes: List<EventType>) {
|
|
||||||
manage_event_types_list.adapter = EventTypeAdapter(this, eventTypes, this) {
|
|
||||||
showEventTypeDialog(it)
|
showEventTypeDialog(it)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
override fun deleteItems(ids: ArrayList<Int>) {
|
override fun deleteItems(ids: ArrayList<Int>) {
|
||||||
if (ids.contains(DBHelper.REGULAR_EVENT_TYPE_ID)) {
|
if (ids.contains(DBHelper.REGULAR_EVENT_TYPE_ID)) {
|
||||||
|
|
Loading…
Reference in New Issue