Add ChannelTab.hashCode() matching equals

pull/6346/head
Eric Xu 2021-05-22 00:23:32 -04:00 zatwierdzone przez Zhiheng Xu
rodzic 14bbaccb9f
commit 1812249d37
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -456,6 +456,11 @@ public abstract class Tab {
&& channelName.equals(other.channelName);
}
@Override
public int hashCode() {
return Objects.hash(getTabId(), channelServiceId, channelUrl, channelName);
}
public int getChannelServiceId() {
return channelServiceId;
}