When I remove the "throws exception1, exception2 ..." in the function
definition the javadoc doesn't updated correctly
Sample:
/**
* Describe <code>createObject</code> method here.
*
* @return an <code>Object</code> value
* @exception Exception if an error occurs
*/
public Object createObject() throws Exception;
fine.
Now I'm removing the exception part:
public Object createObject();
After answering yes to the question:
"Delete 'createObject()' previous documentation? (y or n)"
.... (waiting)
Updating [ done ]
nothing is changed, the exception part is still there:
/**
* Describe <code>createObject</code> method here.
*
* @return an <code>Object</code> value
* @exception Exception if an error occurs
*/
public Object createObject();
Thank you
David Ostrovsky