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 RequiredArgsConstructor is a convenient tool for generating constructors without the need to manually write boilerplate code. However, this functionality encounters issues when used with Manifold properties. Fields annotated with @val are treated as final by the compiler, but Lombok does not recognize them as such.
I'm not sure if anything can be done about this, or if changes to Lombok's codebase are required to resolve this incompatibility?
The text was updated successfully, but these errors were encountered:
Lombok's RequiredArgsConstructor is a convenient tool for generating constructors without the need to manually write boilerplate code. However, this functionality encounters issues when used with Manifold properties. Fields annotated with
@val
are treated as final by the compiler, but Lombok does not recognize them as such.I'm not sure if anything can be done about this, or if changes to Lombok's codebase are required to resolve this incompatibility?
The text was updated successfully, but these errors were encountered: