I noticed that when using IntelliJ IDEA to auto-generate equals(), hashCode(), and toString() methods in the Spring AI source code, the generated code doesn't pass the compile check. This seems to be because:
- Missing braces for 'if' statements [NeedBraces] - Missing 'this.' when referencing instance fields like 'user' [RequireThis]

I can fix them manually, but I’m wondering if the Spring team has any standard templates for these methods that I can use or refer to?

Image