mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 09:33:33 +00:00
chg: Comment out unused code
This commit is contained in:
parent
e1d63a9eef
commit
e790bf3eb6
1 changed files with 16 additions and 16 deletions
|
|
@ -131,22 +131,22 @@ public class PlaylistRepository {
|
|||
});
|
||||
}
|
||||
|
||||
public void updatePlaylist(String playlistId, String name, boolean isPublic, ArrayList<String> songIdToAdd, ArrayList<Integer> songIndexToRemove) {
|
||||
App.getSubsonicClientInstance(false)
|
||||
.getPlaylistClient()
|
||||
.updatePlaylist(playlistId, name, isPublic, songIdToAdd, songIndexToRemove)
|
||||
.enqueue(new Callback<ApiResponse>() {
|
||||
@Override
|
||||
public void onResponse(@NonNull Call<ApiResponse> call, @NonNull Response<ApiResponse> response) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onFailure(@NonNull Call<ApiResponse> call, @NonNull Throwable t) {
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
// public void updatePlaylist(String playlistId, String name, boolean isPublic, ArrayList<String> songIdToAdd, ArrayList<Integer> songIndexToRemove) {
|
||||
// App.getSubsonicClientInstance(false)
|
||||
// .getPlaylistClient()
|
||||
// .updatePlaylist(playlistId, name, isPublic, songIdToAdd, songIndexToRemove)
|
||||
// .enqueue(new Callback<ApiResponse>() {
|
||||
// @Override
|
||||
// public void onResponse(@NonNull Call<ApiResponse> call, @NonNull Response<ApiResponse> response) {
|
||||
//
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public void onFailure(@NonNull Call<ApiResponse> call, @NonNull Throwable t) {
|
||||
//
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
|
||||
public void deletePlaylist(String playlistId) {
|
||||
App.getSubsonicClientInstance(false)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue