WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
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