The blue social bookmark and publication sharing system.
PMD scans Java source code and looks for potential problems like:
* Possible bugs - empty try/catch/finally/switch statements
* Dead code - unu
...PMD scans Java source code and looks for potential problems like:
* Possible bugs - empty try/catch/finally/switch statements
* Dead code - unused local variables, parameters and private methods
* Suboptimal code - wasteful String/StringBuffer usage
* Overcomplicated expressions - unnecessary if statements, for loops that could be while loops
* Duplicate code - copied/pasted code means copied/pasted bugs
to analyse bugs eclipse java plugin programming tools by steff83 and 8 other users on Jan 22, 2009,
8:41 PMThis is the web page for FindBugs, a program which uses static analysis to look for bugs in Java code. It is free software, distributed under the terms of
...This is the web page for FindBugs, a program which uses static analysis to look for bugs in Java code. It is free software, distributed under the terms of the Lesser GNU Public License. The name FindBugs™ and the FindBugs logo are trademarked by The University of Maryland. FindBugs is sponsored by Fortify Software. As of December, 2007, FindBugs has been downloaded more than half a million times.
to bugs eclipse java plugin programming tools by steff83 and 12 other users on Jan 29, 2008,
6:38 PM