You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We generate a dummy description e.g. "The configuration property." in below example if both description and summary are not defined on the model property or client method parameter. It is meaningless and we cannot easily distinguish whether the javadoc is dummy or created by service team. So we would like to remove it.
/**
+ * Set the configuration property: The configuration property.
*
* @param configuration the configuration value to set.
* @return the JobData object itself.
*/
@Generated
public JobData setConfiguration(String configuration) {
this.configuration = configuration;
return this;
}
The text was updated successfully, but these errors were encountered:
haolingdong-msft
changed the title
javadoc, do not generate default javadoc description if it is not defined in tsp/swagger
javadoc, do not generate default javadoc description if description is not defined in tsp/swagger
May 23, 2024
Link #2776
We generate a dummy description e.g. "The configuration property." in below example if both description and summary are not defined on the model property or client method parameter. It is meaningless and we cannot easily distinguish whether the javadoc is dummy or created by service team. So we would like to remove it.
/** + * Set the configuration property: The configuration property. * * @param configuration the configuration value to set. * @return the JobData object itself. */ @Generated public JobData setConfiguration(String configuration) { this.configuration = configuration; return this; }
The text was updated successfully, but these errors were encountered: