AccountExternalIdInfo: Implement hashCode alongside equals

Change-Id: I5f88bd25dde7a9fb8d429a2ef4fad2f104de223a
This commit is contained in:
Dave Borowitz 2017-01-17 11:18:57 -05:00 committed by David Pursehouse
parent a80fd80f8c
commit e5c5953205

View File

@ -44,4 +44,9 @@ public class AccountExternalIdInfo
}
return false;
}
@Override
public int hashCode() {
return Objects.hash(identity, emailAddress, trusted, canDelete);
}
}