(int hashCode)
| 44 | * hereby disclaims copyright to this source code. |
| 45 | */ |
| 46 | static int smear(int hashCode) { |
| 47 | return C2 * Integer.rotateLeft(hashCode * C1, 15); |
| 48 | } |
| 49 | |
| 50 | static int smearedHash(@Nullable Object o) { |
| 51 | return smear((o == null) ? 0 : o.hashCode()); |
no test coverage detected