tigre200
tigre200

Reputation: 326

Removing author auto generated javadoc in 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:

/**
*
*/

Upvotes: 6

Views: 4005

Answers (1)

nhouser9
nhouser9

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

Related Questions