mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-02-01 07:03:35 +00:00
Removed unused database references
This commit is contained in:
@@ -32,17 +32,17 @@ public class ArtistPageViewModel extends AndroidViewModel {
|
||||
}
|
||||
|
||||
public LiveData<List<Album>> getAlbumList() {
|
||||
albumList = albumRepository.getArtistListLiveAlbums(artist.id);
|
||||
// albumList = albumRepository.getArtistListLiveAlbums(artist.id);
|
||||
return albumList;
|
||||
}
|
||||
|
||||
public List<Song> getArtistRandomSongList() {
|
||||
randomList = songRepository.getArtistListLiveRandomSong(artist.id);
|
||||
// randomList = songRepository.getArtistListLiveRandomSong(artist.id);
|
||||
return randomList;
|
||||
}
|
||||
|
||||
public LiveData<List<Song>> getArtistTopSongList() {
|
||||
songList = songRepository.getArtistListLiveTopSongSample(artist.id);
|
||||
// songList = songRepository.getArtistListLiveTopSongSample(artist.id);
|
||||
return songList;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user