innerbuilder icon indicating copy to clipboard operation
innerbuilder copied to clipboard

Ability to remove annotations from from original fields

Open franzvezuli opened this issue 6 years ago • 0 comments

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!

franzvezuli avatar May 13 '19 17:05 franzvezuli