-
Bug
-
Resolution: Fixed
-
P2
-
9
-
b153
-
Verified
return Objects.hashCode(element);
but it needs to be
return 31 + Objects.hashCode(element);
to be compliant with specification.
- duplicates
-
JDK-8172725 Two test failures in java/util/concurrent/tck
-
- Closed
-
- relates to
-
JDK-8166365 Small immutable collections should provide optimized implementations when possible
-
- Resolved
-