Remove unused function

This commit is contained in:
Naveen 2023-07-19 20:26:57 +05:30
parent dae2605f8c
commit 7a7f639692
No known key found for this signature in database
GPG key ID: 0E155DAD31671DA3

View file

@ -195,8 +195,6 @@ class AlbumsTracksAdapter(
private fun getSelectedTracks(): ArrayList<Track> = items.filter { it is Track && selectedKeys.contains(it.hashCode()) }.toMutableList() as ArrayList<Track>
private fun getSelectedItems(): List<ListItem> = items.filter { selectedKeys.contains(it.hashCode()) }
private fun setupAlbum(view: View, album: Album) {
view.apply {
album_frame?.isSelected = selectedKeys.contains(album.hashCode())