Removed unused context parameters

This commit is contained in:
antonio 2023-03-10 19:02:25 +01:00
parent ff1a1350f9
commit 20052ff054
18 changed files with 51 additions and 51 deletions

View file

@ -22,7 +22,7 @@ public class SongRepository {
private static final String TAG = "SongRepository";
public MutableLiveData<List<Child>> getStarredSongs(boolean random, int size) {
MutableLiveData<List<Child>> starredSongs = new MutableLiveData<>(Collections.EMPTY_LIST);
MutableLiveData<List<Child>> starredSongs = new MutableLiveData<>(Collections.emptyList());
App.getSubsonicClientInstance(false)
.getAlbumSongListClient()