1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-08-30 01:17:55 +00:00

Resolve TODO in indexOf(...)

PlayQueueItem overrides equals and hashCode, so using indexOf is
perfectly fine.
This commit is contained in:
Eric Xu
2021-05-21 23:41:24 -04:00
committed by Zhiheng Xu
parent 775fbc9a75
commit e8eeac6735

View File

@@ -196,8 +196,6 @@ public abstract class PlayQueue implements Serializable {
* @return the index of the given item
*/
public int indexOf(@NonNull final PlayQueueItem item) {
// referential equality, can't think of a better way to do this
// todo: better than this
return streams.indexOf(item);
}