On Jul 18, 2007, at 11:17, Vincent Hennebert wrote:
Only the trunk. They are not functional changes so don't need to
figure
in the 0.94 release. Only (urgent) bug corrections should be merged in
the branch now.
OK.
BTW, the proper use of inheritDoc seems to be like the following:
/** [EMAIL PROTECTED] */
public void someMethod()
and not
/** @inheritDoc SuperClass#someMethod() */
public void someMethod()
Javadoc doesn't seem to be troubled by the latter and gives the same
result, but Eclipse only displays "SuperClass#someMethod()" in the
tooltip in this case. Not really an improvement :-(
Can you check this?
No problem.
A regexp like "@inheritDoc\s(.*?)(?=\s)" (replace with "[EMAIL PROTECTED]
\}") seems to do the trick.
Some 1750 occurrences in 425 files. Imagine replacing all of them
manually...
Cheers
Andreas