We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
io.qbeast.core.model.CubeId has incorrect implementation of equals/hashCode.
io.qbeast.core.model.CubeId
equals/hashCode
Different steps about how to reproduce the problem.
val id1 = CubeId(1, 1, Array(1L)) val id2 = CubeId(1, 1, Array(9L)) id1 == id2 shouldBe true id1.hashCode() shouldBe id2.hashCode()
The main branch at f066acf
The text was updated successfully, but these errors were encountered:
Qbeast-io#228 Implementation of equals/hashCode of CubeId is reworked
c1c144f
Qbeast-io#228 Test coverage of CubeId is improved.
882a7f1
Merge pull request #231 from alexeiakimov/228-cubeid-has-incorrect-im…
cdcc4e2
…plementation-of-equals-and-hashcode #228 Implementation of equals/hashCode of CubeId is fixed
alexeiakimov
No branches or pull requests
What went wrong?
io.qbeast.core.model.CubeId
has incorrect implementation ofequals/hashCode
.How to reproduce?
Different steps about how to reproduce the problem.
1. Code that triggered the bug, or steps to reproduce:
2. Branch and commit id:
The main branch at f066acf
The text was updated successfully, but these errors were encountered: