[Fb-contrib-commit] SF.net SVN: fb-contrib: [536] trunk/fb-contrib/htdocs/index.html
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-05-15 03:31:09
|
Revision: 536 Author: dbrosius Date: 2006-05-14 20:31:05 -0700 (Sun, 14 May 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=536&view=rev Log Message: ----------- doc new detectors Modified Paths: -------------- trunk/fb-contrib/htdocs/index.html Modified: trunk/fb-contrib/htdocs/index.html =================================================================== --- trunk/fb-contrib/htdocs/index.html 2006-05-15 03:26:53 UTC (rev 535) +++ trunk/fb-contrib/htdocs/index.html 2006-05-15 03:31:05 UTC (rev 536) @@ -46,22 +46,30 @@ <a href="javadoc/index.html">JavaDoc</a> <hr/> - <img id="svn_image" src="flip1.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/> + <img id="svn_image" src="flip2.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/> Detectors added in svn - <div id="svn" style="display:none;"> + <div id="svn" style="display:block;"> <ul> <li><b>[BSB] Bloated Synchronized Block</b><br/> Looks for methods that implement synchronized blocks that appear to contain some code at the beginning that does not need to be synchronized. Moving these lines out of the synchronized block should help multithreaded performance.</li> + <li><b>[NMCS] Needless Member Collection Synchronization</b><br/> + Looks for private collection members, either static or instance, that are only initialized in + the clinit or init, but are synchronized. This is not necessary as the constructor or static + initializer are guaranteed to be thread safe.</li> + <li><b>[ITC] Inheritance Type Checking</b><br/> + Looks for if/else blocks where a series of them use instanceof on the same + variable to determine what do to. If these classes are related by inheritance, + this often is better handled through calling a single overridden method.</li> </ul> </div> <hr/> - <img id="v2_6_0_image" src="flip2.gif" onClick="toggleBlock('v2_6_0', 'v2_6_0_image');" align="top"/> + <img id="v2_6_0_image" src="flip1.gif" onClick="toggleBlock('v2_6_0', 'v2_6_0_image');" align="top"/> Detectors added in v2.6.0<br/> Note: This version of fb-contrib requires FindBugs v0.9.7.<br/> - <div id="v2_6_0" style="display:block;"> + <div id="v2_6_0" style="display:none;"> <ul> <li><b>[FCBL] Field could be Local</b><br/> Looks for classes that declare fields that are used in a locals-only fashion, specifically private fields This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |