format code
This commit is contained in:
parent
5b75c5f26b
commit
9dc953def9
|
@ -465,9 +465,7 @@ class ContactsAdapter(
|
|||
notifyItemMoved(fromPosition, toPosition)
|
||||
}
|
||||
|
||||
override fun onRowSelected(myViewHolder: ViewHolder?) {
|
||||
|
||||
}
|
||||
override fun onRowSelected(myViewHolder: ViewHolder?) { }
|
||||
|
||||
override fun onRowClear(myViewHolder: ViewHolder?) {
|
||||
onDragEndListener?.invoke()
|
||||
|
|
|
@ -22,12 +22,8 @@ class ChangeSortingDialog(val activity: BaseSimpleActivity, private val showCust
|
|||
activity.setupDialogStuff(view, this, R.string.sort_by)
|
||||
}
|
||||
|
||||
currSorting = if (showCustomSorting) {
|
||||
if (config.isCustomOrderSelected) {
|
||||
SORT_BY_CUSTOM
|
||||
} else {
|
||||
config.sorting
|
||||
}
|
||||
currSorting = if (showCustomSorting && config.isCustomOrderSelected) {
|
||||
SORT_BY_CUSTOM
|
||||
} else {
|
||||
config.sorting
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue