-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@Accessors(chain = true) should work with inheritance #148
Comments
+1 |
Any update? |
Is there something wrong with the suggested solution for the implementation? |
+1, the current behavior is rather annoying |
+1 |
5 similar comments
+1 |
+1 |
+1 |
+1 |
+1 |
+1 |
+1 pretty please |
+10 |
+1 |
1 similar comment
+1 |
It seems that they just simply don't want to do this: |
+1 |
1 similar comment
+1 |
Hi, any news on this regard? |
+1 |
1 similar comment
+1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When you use @accessors(chain = true) and you have a hierarchy present you can not chain parent setters with child setters cause the return type in the first ones is the parent class so when you wanna start working with the child setters it doesn't work
A solution could be overriding the parent setters to change the return type, and so all the setters related to a class return the same type
The text was updated successfully, but these errors were encountered: