I want to find a solution to quickly delete all empty comment lines and empty javadoc lines in all my java files, as shown below:
/**
* getBuildTime
*
*
* @return
*/
//
//get build time
public Date getBuildTime () {
return buildTime;
}
The result I want returns:
/**
* getBuildTime
* @return
*/
//get build time
public Date getBuildTime () {
return buildTime;
}
Thanks and would appreciate any solution you offer!