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

Fix Kotlin user projects build #2341

Merged
merged 2 commits into from
Jun 23, 2023
Merged

Fix Kotlin user projects build #2341

merged 2 commits into from
Jun 23, 2023

Commits on Jun 21, 2023

  1. Remove @SharedImmutable usages

    The annotation is deprecated and has no effect.
    qurbonzoda committed Jun 21, 2023
    Configuration menu
    Copy the full SHA
    3a7f21d View commit details
    Browse the repository at this point in the history
  2. Suppress animal sniffer error in a data class with boolean property

    The error is a result of changes in data class hashCode generation.
    The generated code now uses the static Boolean.hashCode() to calculate hash code of boolean properties. The static function is available only since Java 1.8.
    qurbonzoda committed Jun 21, 2023
    Configuration menu
    Copy the full SHA
    330626a View commit details
    Browse the repository at this point in the history