mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +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) {
|
// public void updatePlaylist(String playlistId, String name, boolean isPublic, ArrayList<String> songIdToAdd, ArrayList<Integer> songIndexToRemove) {
|
||||||
App.getSubsonicClientInstance(false)
|
// App.getSubsonicClientInstance(false)
|
||||||
.getPlaylistClient()
|
// .getPlaylistClient()
|
||||||
.updatePlaylist(playlistId, name, isPublic, songIdToAdd, songIndexToRemove)
|
// .updatePlaylist(playlistId, name, isPublic, songIdToAdd, songIndexToRemove)
|
||||||
.enqueue(new Callback<ApiResponse>() {
|
// .enqueue(new Callback<ApiResponse>() {
|
||||||
@Override
|
// @Override
|
||||||
public void onResponse(@NonNull Call<ApiResponse> call, @NonNull Response<ApiResponse> response) {
|
// public void onResponse(@NonNull Call<ApiResponse> call, @NonNull Response<ApiResponse> response) {
|
||||||
|
//
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
@Override
|
// @Override
|
||||||
public void onFailure(@NonNull Call<ApiResponse> call, @NonNull Throwable t) {
|
// public void onFailure(@NonNull Call<ApiResponse> call, @NonNull Throwable t) {
|
||||||
|
//
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
|
|
||||||
public void deletePlaylist(String playlistId) {
|
public void deletePlaylist(String playlistId) {
|
||||||
App.getSubsonicClientInstance(false)
|
App.getSubsonicClientInstance(false)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue