jsduck
jsduck copied to clipboard
redundant privates information
If I have a function
privates: {
/**
* @private
**/
myFunction: function() {
}
}
then I have to add @private because it would set this function to public because there is a comment. This information is redundant and should be removed. It should not set public by default. If a comment exists in privates then the default value should be private if a comment exists.