Skip to content

Commit

Permalink
Use mutableListOf instead of ArrayList
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensousa committed Aug 30, 2024
1 parent 496f0c0 commit d0503a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DpadTestAdapter(
) :
RecyclerView.Adapter<DpadTestAdapter.VH>() {

private var items = ArrayList<Item>()
private var items = mutableListOf<Item>()

init {
repeat(1000) { value ->
Expand Down

0 comments on commit d0503a8

Please sign in to comment.