How do you remove the auto generated author javadoc in NetBeans.
I've already removed this in the templates for everything I use, but, still, when I type a brand new javadoc at the beginning of a class, it generates code like this:
/**
*
* @author username
*/
When I would like for it to just be like so:
/**
*
*/
You can to to Tools > Templates > Java > Java Class > Open in Editor
It will show something like:
/**
*
* @author ${user}
*/
public class ${name} {
}
Simply change that to:
/**
*
*/
public class ${name} {
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With