mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-02 18:31:40 +00:00
Removed unused resources
This commit is contained in:
parent
00df65f64d
commit
a531502a1b
12 changed files with 21 additions and 242 deletions
|
|
@ -137,10 +137,10 @@ public class AlbumRepository {
|
|||
});
|
||||
}
|
||||
|
||||
public void setRating(String id, int star) {
|
||||
public void setRating(String id, int rating) {
|
||||
App.getSubsonicClientInstance(application, false)
|
||||
.getMediaAnnotationClient()
|
||||
.setRating(id, star)
|
||||
.setRating(id, rating)
|
||||
.enqueue(new Callback<SubsonicResponse>() {
|
||||
@Override
|
||||
public void onResponse(Call<SubsonicResponse> call, Response<SubsonicResponse> response) {
|
||||
|
|
|
|||
|
|
@ -188,10 +188,10 @@ public class ArtistRepository {
|
|||
});
|
||||
}
|
||||
|
||||
public void setRating(String id, int star) {
|
||||
public void setRating(String id, int rating) {
|
||||
App.getSubsonicClientInstance(application, false)
|
||||
.getMediaAnnotationClient()
|
||||
.setRating(id, star)
|
||||
.setRating(id, rating)
|
||||
.enqueue(new Callback<SubsonicResponse>() {
|
||||
@Override
|
||||
public void onResponse(Call<SubsonicResponse> call, Response<SubsonicResponse> response) {
|
||||
|
|
|
|||
|
|
@ -154,10 +154,10 @@ public class SongRepository {
|
|||
});
|
||||
}
|
||||
|
||||
public void setRating(String id, int star) {
|
||||
public void setRating(String id, int rating) {
|
||||
App.getSubsonicClientInstance(application, false)
|
||||
.getMediaAnnotationClient()
|
||||
.setRating(id, star)
|
||||
.setRating(id, rating)
|
||||
.enqueue(new Callback<SubsonicResponse>() {
|
||||
@Override
|
||||
public void onResponse(Call<SubsonicResponse> call, Response<SubsonicResponse> response) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue