Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Use super.list
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Jun 25, 2024
1 parent 89110e6 commit c22b1af
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,7 @@ internal interface IMutableRvAdapter<M : IVhModelType> : IRvAdapter<M> {
AP : IRvBinding<M>,
AP : RecyclerView.Adapter<BindingViewHolder> {

override var list: List<M>
get() = _list
override var list: List<M> = super.list
set(value) {
_list.clear()
_list.addAll(transform(value))
Expand Down

0 comments on commit c22b1af

Please sign in to comment.