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
When using tools like NullAway, it causes some issues because you cannot easily use the fluent setters when setting a nullable attribute, because the setter is not annotated with @Nullable.
I'd like to add the annotations to the attributes and the setters, so that it's easier to enable tools like NullAway on code using the generated clients.
I will submit a PR for this feature request.
The text was updated successfully, but these errors were encountered:
I'm using java generator for webclient, and the generated POJO classes only contain
@Nullable
/@Nonnull
annotations for the getters, but not for the attributes themselves or the setters.When using tools like NullAway, it causes some issues because you cannot easily use the fluent setters when setting a nullable attribute, because the setter is not annotated with
@Nullable
.I'd like to add the annotations to the attributes and the setters, so that it's easier to enable tools like NullAway on code using the generated clients.
I will submit a PR for this feature request.
The text was updated successfully, but these errors were encountered: