> There is a few JDK classes duplicating the contents of Long.hashCode() for
> hash code calculation. They should explicitly delegate to Long.hashCode().
Сергей Цыпанов has updated the pull request with a new target base due to a
merge or a rebase. The incremental webrev excludes the unrelated c
On Tue, 13 Jul 2021 13:04:36 GMT, Attila Szegedi wrote:
>> src/java.base/share/classes/java/util/BitSet.java line 1040:
>>
>>> 1038: h ^= words[i] * (i + 1);
>>> 1039:
>>> 1040: return Long.hashCode(h);
>>
>> Here `>>` instead of `>>>` in original code seems to be a typo
>