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
Lombok's @tostring implementation doesn't provide attributes from a base class unless specified. Need to check @DaTa to see if we can pass that option through, or add a new annotation in classes that have a meaningful parent. See callSuper here: http://projectlombok.org/features/ToString.html
The text was updated successfully, but these errors were encountered:
@DaTa is like having implicit @getter, @Setter, @tostring, @EqualsAndHashCode and @requiredargsconstructor annotations on the class. However, the parameters of these annotations (such as callSuper, includeFieldNames and exclude) cannot be set with @DaTa. If you need to set non-default values for any of these parameters, just add those annotations explicitly; @DaTa is smart enough to defer to those annotations.
Lombok's @tostring implementation doesn't provide attributes from a base class unless specified. Need to check @DaTa to see if we can pass that option through, or add a new annotation in classes that have a meaningful parent. See
callSuper
here: http://projectlombok.org/features/ToString.htmlThe text was updated successfully, but these errors were encountered: