Hi,
When I look at the generated code for equals I see that the method uses getters for non opted out attributes while it accesses the attribute directly when generating the hashcode method.
Is this behavior happening always (using getters for equals, attribute for hashcode) or is it somehow configurable?
My use case would be a JPA entity where I have a uuid as the only opted in attribute but the attribute is set only when read (for performance reason) thus the direct access of the attribute would return null while the access to the getter would return a correct value.
Thanks in advance for any hint !