Skip to content

Ability to remove annotations from from original fields #52

@franzvezuli

Description

@franzvezuli

Was wondering if we can add a new feature (checkmark) -- to not copy over the annotations from the original fields that are defined

Example:

@NotNull
@Size(max = 250)
private String name;

Currently:

public Builder withName(@NotNull @Size(max = 250) String val) {
  name = val;
  return this;
}

Wanted feature:

public Builder withName(String val) {
  name = val;
  return this;
}

Thank you for this already great plugin!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions