Add Tab.hashCode() to go with equals

This commit is contained in:
Eric Xu 2021-05-22 00:07:56 -04:00 committed by Zhiheng Xu
parent 96d731dfc7
commit 01aab25889
1 changed files with 5 additions and 0 deletions

View File

@ -119,6 +119,11 @@ public abstract class Tab {
return getTabId() == other.getTabId();
}
@Override
public int hashCode() {
return Objects.hashCode(getTabId());
}
/*//////////////////////////////////////////////////////////////////////////
// JSON Handling
//////////////////////////////////////////////////////////////////////////*/