Is there something that will remove JavaDoc code? I've looked but could only find `jde-javadoc-delete-documentation', which doesn't seem to do what I need.
For instance, I want:
/**
* Return name.
*/
public String getName() {
// perhaps comments here
return name;
}
to become:
public String getName() {
// perhaps comments here
return name;
}
--
Paul Landes
[EMAIL PROTECTED]
