You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really hope I don't duplicate anything but I haven't found this anywhere.
We have property 'lombok.equalsAndHashCode.callSuper = call' but no
'lombok.toString.callSuper = call'. Is there any particular reason why such a property
is missing in configuration?
Guys, the doc speaks about it but as I understand it's not released yet ? https://projectlombok.org/features/ToString : lombok.toString.callSuper = [call | skip | warn] (default: skip)
We are trying to use it for one hour with no success, and I step into this github issue :/
There are a couple of spots in the documentation where there are references to callSuper = true, which I've seen cause people some confusion. If the current released version now supports call, would it be possible to have the documentation cleaned up to remove references to true/false? This is true of both toString and EqualsAndHashCode. Big fan of the update to include the warn though given the impact :)
i.e. . By setting callSuper to true, you can include the output of the superclass implementation of toString to the output.
Activity
palashgoel7 commentedon Oct 23, 2018
ToString does have a callSuper boolean, same as EqualsAndHashcode.
@ToString(callSuper = true)
zbynekvavros commentedon Oct 23, 2018
I am talking about property in lombok.properties (having lombok.toString.callSuper = call).
Is this possible?
rzwitserloot commentedon Nov 5, 2018
It'll be in the next version :)
zbynekvavros commentedon Nov 5, 2018
Thanks :)
mgohin commentedon Jan 4, 2019
Guys, the doc speaks about it but as I understand it's not released yet ?
https://projectlombok.org/features/ToString :
lombok.toString.callSuper = [call | skip | warn] (default: skip)
We are trying to use it for one hour with no success, and I step into this github issue :/
rzwitserloot commentedon Jan 29, 2019
this is now available in edge release: https://projectlombok.org/download-edge
a new full lombok release will be out soon, we have one more change we'd like to run in edge release first before then.
celdridge91190 commentedon Mar 18, 2019
There are a couple of spots in the documentation where there are references to callSuper = true, which I've seen cause people some confusion. If the current released version now supports call, would it be possible to have the documentation cleaned up to remove references to true/false? This is true of both toString and EqualsAndHashCode. Big fan of the update to include the warn though given the impact :)
i.e. . By setting callSuper to true, you can include the output of the superclass implementation of toString to the output.
CH-LuizGerosa commentedon Mar 21, 2019
I upgraded to version 1.18.6 and I'm still receiving the error message
Unknown key 'lombok.toString.callSuper'
during the build.