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
For example, the generated builder for the following pojo is not correct:
@GeneratePojoBuilder public class Contact { public List<? extends Job> jobs; }
The with-method "withJobs" should have the following signature:
public ContactBuilder withJobs(List<? extends Job> jobs)
but has:
public ContactBuilder withJobs(List jobs)
The text was updated successfully, but these errors were encountered:
Großen Teil von mkarneim#100
7acbaaf
Partial implementation of mkarneim#100
b6d6e61
fffa862
No branches or pull requests
For example, the generated builder for the following pojo is not correct:
The with-method "withJobs" should have the following signature:
but has:
The text was updated successfully, but these errors were encountered: