We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Added annotations are getting mixed with the modifier.
- @JsonProperty public List<String> bar; + @JsonPropertypublic @Nullable List<String> bar;
Or
- @JsonProperty - @JsonInclude(JsonInclude.Include.NON_NULL) - public String foo; + @JsonProperty @JsonInclude(JsonInclude.Include.NON_NULL) @Nullable +@Nullablepublic String foo;
To Reproduce
Expected behavior
- @JsonProperty - @JsonInclude(JsonInclude.Include.NON_NULL) - public String foo; + @JsonProperty @JsonInclude(JsonInclude.Include.NON_NULL) @Nullable + public String foo;
and
- @JsonProperty public List<String> bar; + @JsonProperty public @Nullable List<String> bar;
Stack trace Not-Applicable.
OS (please complete the following information):
Additional context This is a subproblem of #77
The text was updated successfully, but these errors were encountered:
resolve issue78 (#79)
de55b68
This PR resolves #78 by downgrading javaparser to version `3.24.0`.
#90 is landed and resolves this issue.
Sorry, something went wrong.
nimakarimipour
Successfully merging a pull request may close this issue.
Describe the bug
Added annotations are getting mixed with the modifier.
Or
To Reproduce
Expected behavior
and
Stack trace
Not-Applicable.
OS (please complete the following information):
Additional context
This is a subproblem of #77
The text was updated successfully, but these errors were encountered: