Looking at the PMD report of Commons Collections, I've fixed the blatant
errors [see:
http://pmd.sourceforge.net/reports/jakartacommons_jakarta-commons.html]
It still leaves a lot in the Tests which are basically:
try {
Object obj = someTest();
} catch(ExpectedException ee) {
...
}
It thinks these should be:
try {
someTest();
} catch(...
So. Does anyone mind if I go through and remove all the variable naming?
Is it doing any real service [all it shows is return type, rtfjdoc]?
Hen
--
To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@;jakarta.apache.org>