I have many empty Javadoc comments at beginning of many Java files in my project.
/**
*
*/
package com.name.app
// etc. etc.
How to remove all of them using Eclipse?
I have many empty Javadoc comments at beginning of many Java files in my project.
/**
*
*/
package com.name.app
// etc. etc.
How to remove all of them using Eclipse?
I found the required regex ...
With Search menu, File, put this in Containing text with "Regular expression" checked :
\A/\*\*(\s|\*)+\*/
Hope it helps for others.