when generating javadoc from sources (delomboked) I receive following warnings for the builder classes generated by the Lombok's @Builder
[ERROR] Error while creating javadoc report:
Exit code: 1 - /path/to/project/ProjectData.java:85: warning: no @param for type
public ProjectData.ProjectDataBuilder type(final ProjectType type) {
Here is a part of delomboked class causing warning:
/**
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
public ProjectData.ProjectDataBuilder type(final ProjectType type) {
this.type = type;
return this;
}
And here is what is assumed a proper, no warning-producing javadoc - with @param present
/**
* @param type some meaningful description
* @return {@code this}.
*/
@java.lang.SuppressWarnings("all")
public ProjectData.ProjectDataBuilder type(final ProjectType type) {
this.type = type;
return this;
}
Is there a way to make de-lombok generate these as well? There are a lot of such warning in my project and they kind of clouds all the relevant actual errors.