mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 18:03:33 +00:00
Removed unused context parameters
This commit is contained in:
parent
ff1a1350f9
commit
20052ff054
18 changed files with 51 additions and 51 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue