Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing author auto generated javadoc in NetBeans

Tags:

java

netbeans

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:

/**
*
*/
like image 785
tigre200 Avatar asked Oct 19 '22 06:10

tigre200


1 Answers

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} {

}
like image 111
nhouser9 Avatar answered Oct 27 '22 10:10

nhouser9