Skip to content
New issue

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

Properties using Builder interface should have the type: Builder<? extends Type> #115

Closed
Adrodoc opened this issue Jul 5, 2016 · 0 comments

Comments

@Adrodoc
Copy link
Contributor

Adrodoc commented Jul 5, 2016

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)

but has:
public PojoBuilder withValue(Builder<Number> value)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants