We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53bb5c8 commit c9facc3Copy full SHA for c9facc3
core/src/main/java/com/datastax/oss/driver/internal/core/type/codec/registry/DefaultCodecRegistry.java
@@ -162,7 +162,7 @@ public int hashCode() {
162
// NOTE: inlined Objects.hash for performance reasons (avoid Object[] allocation
163
// seen in profiler allocation traces)
164
return ((31 + Objects.hashCode(cqlType)) * 31 + Objects.hashCode(javaType)) * 31
165
- + Boolean.hashCode(isJavaCovariant);
+ + Boolean.hashCode(isJavaCovariant);
166
}
167
168
0 commit comments