1
0
mirror of https://github.com/TeamNewPipe/NewPipe.git synced 2024-11-22 11:02:35 +01:00

Add ChannelTab.hashCode() matching equals

This commit is contained in:
Eric Xu 2021-05-22 00:23:32 -04:00 committed by Zhiheng Xu
parent 14bbaccb9f
commit 1812249d37

View File

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