Is there a way to make Eclipse/Javadoc give me warning for unused parameters?
It can happen that my comments contain something like @param foo
while I no longer use a parameter of the name foo
in my method signature. I wish Eclipse would give me a warning when I compile that the parameter is not used, f.e. as a strike through.
Xcode does something like this: When you compile it puts a warning above the method that says: Warning: argument 'foo' of command @param is not found in the argument list of ...
the method.