Remove equals() method from PlayQueueItem
This commit is contained in:
parent
fd4e1b8d2c
commit
4a2bd7bd7b
1 changed files with 0 additions and 14 deletions
|
@ -64,20 +64,6 @@ public class PlayQueueItem implements Serializable {
|
||||||
this.recoveryPosition = RECOVERY_UNSET;
|
this.recoveryPosition = RECOVERY_UNSET;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(final Object o) {
|
|
||||||
if (o instanceof PlayQueueItem) {
|
|
||||||
return url.equals(((PlayQueueItem) o).url);
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int hashCode() {
|
|
||||||
return url.hashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
public String getTitle() {
|
public String getTitle() {
|
||||||
return title;
|
return title;
|
||||||
|
|
Loading…
Reference in a new issue