ui: codestyle nit
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
b858284b1e
commit
e8ad75d924
@ -17,8 +17,10 @@ import java.lang.ref.WeakReference
|
|||||||
/**
|
/**
|
||||||
* A generic `RecyclerView.Adapter` backed by a `ObservableKeyedArrayList`.
|
* A generic `RecyclerView.Adapter` backed by a `ObservableKeyedArrayList`.
|
||||||
*/
|
*/
|
||||||
class ObservableKeyedRecyclerViewAdapter<K, E : Keyed<out K>> internal constructor(context: Context, private val layoutId: Int,
|
class ObservableKeyedRecyclerViewAdapter<K, E : Keyed<out K>> internal constructor(
|
||||||
list: ObservableKeyedArrayList<K, E>?) : RecyclerView.Adapter<ObservableKeyedRecyclerViewAdapter.ViewHolder>() {
|
context: Context, private val layoutId: Int,
|
||||||
|
list: ObservableKeyedArrayList<K, E>?
|
||||||
|
) : RecyclerView.Adapter<ObservableKeyedRecyclerViewAdapter.ViewHolder>() {
|
||||||
private val callback = OnListChangedCallback(this)
|
private val callback = OnListChangedCallback(this)
|
||||||
private val layoutInflater: LayoutInflater = LayoutInflater.from(context)
|
private val layoutInflater: LayoutInflater = LayoutInflater.from(context)
|
||||||
private var list: ObservableKeyedArrayList<K, E>? = null
|
private var list: ObservableKeyedArrayList<K, E>? = null
|
||||||
|
Loading…
Reference in New Issue
Block a user