Add hashCode() to match equals(other)

pull/6345/head
Eric Xu 2021-05-21 18:00:46 -04:00 zatwierdzone przez Zhiheng Xu
rodzic 882b235a78
commit 441c68ead2
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -509,6 +509,11 @@ public abstract class PlayQueue implements Serializable {
return streams.equals(other.streams);
}
@Override
public int hashCode() {
return streams.hashCode();
}
public boolean isDisposed() {
return disposed;
}