mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-01-07 16:35:17 +01:00
Add Tab.hashCode() to go with equals
This commit is contained in:
parent
96d731dfc7
commit
01aab25889
@ -119,6 +119,11 @@ public abstract class Tab {
|
||||
return getTabId() == other.getTabId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hashCode(getTabId());
|
||||
}
|
||||
|
||||
/*//////////////////////////////////////////////////////////////////////////
|
||||
// JSON Handling
|
||||
//////////////////////////////////////////////////////////////////////////*/
|
||||
|
Loading…
Reference in New Issue
Block a user