Reputation: 326
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:
/**
*
*/
Upvotes: 6
Views: 4005
Reputation: 6780
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} {
}
Upvotes: 4