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(withBuilderInterface = Builder.class, withBuilderProperties = true) public class Pojo { public Number value; }
The builder-with-method "withValue" should have the following signature: public PojoBuilder withValue(Builder<? extends Number> value)
public PojoBuilder withValue(Builder<? extends Number> value)
but has: public PojoBuilder withValue(Builder<Number> value)
public PojoBuilder withValue(Builder<Number> value)
The text was updated successfully, but these errors were encountered:
Use '? extends Type' for properties using builder interface. Fixes mk…
d322c13
…arneim#115
Merge pull request #116 from Adrodoc55/master
1ec79b0
Use '? extends Type' for properties using builder interface. Fixes #115
No branches or pull requests
For example, the generated builder for the following pojo is not correct:
The builder-with-method "withValue" should have the following signature:
public PojoBuilder withValue(Builder<? extends Number> value)
but has:
public PojoBuilder withValue(Builder<Number> value)
The text was updated successfully, but these errors were encountered: