Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.0] improve AnnotationInstance.hashCode() #335

Merged
merged 1 commit into from
Oct 4, 2023

Commits on Oct 4, 2023

  1. improve AnnotationInstance.hashCode()

    The `AnnotationInstance.equals()` method considers two annotations that are
    basically the same as distinct if they don't have the same `target`. However,
    the `AnnotationInstance.hashCode()` method does not take the `target` into
    account at all, which leads to hash table collisions. This commit uses
    the `AnnotationTarget` information to spread out the `AnnotationInstance`
    hash code to make collisions less likely.
    Ladicek committed Oct 4, 2023
    Configuration menu
    Copy the full SHA
    1e15f7c View commit details
    Browse the repository at this point in the history