AMashenkov commented on code in PR #7914:
URL: https://github.com/apache/ignite-3/pull/7914#discussion_r3039766463


##########
modules/java-records-tests/src/testFixtures/java/org/apache/ignite/internal/schema/marshaller/Records.java:
##########
@@ -275,7 +281,7 @@ public boolean equals(Object obj) {
 
             @Override
             public int hashCode() {
-                return Objects.hash(id);
+                return 31 + Objects.hashCode(id);

Review Comment:
   The old call looks like a type. but why it can't be
   ```suggestion
                   return Objects.hashCode(id);
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to