[Fb-contrib-commit] SF.net SVN: fb-contrib: [404] trunk/fb-contrib/htdocs/index.html
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-04-07 01:55:08
|
Revision: 404 Author: dbrosius Date: 2006-04-06 18:54:57 -0700 (Thu, 06 Apr 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=404&view=rev Log Message: ----------- add space Modified Paths: -------------- trunk/fb-contrib/htdocs/index.html Modified: trunk/fb-contrib/htdocs/index.html =================================================================== --- trunk/fb-contrib/htdocs/index.html 2006-04-07 01:25:23 UTC (rev 403) +++ trunk/fb-contrib/htdocs/index.html 2006-04-07 01:54:57 UTC (rev 404) @@ -46,10 +46,11 @@ <a href="javadoc/index.html">JavaDoc</a> <hr/> - <img id="cvs_image" src="flip2.gif" onClick="toggleBlock('cvs', 'cvs_image');" align="top"/> - Detectors added in CVS<br/> + <img id="svn_image" src="flip2.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/> + Detectors added in SVN<br/> Note: these detectors are still in testing<br/> - <div id="cvs" style="display:block;"> + Also note that the svn version of fb-contrib requires the cvs version of FindBugs.<br/> + <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 @@ -57,7 +58,13 @@ block should help multithreaded performance.</li> <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 - that are accessed first in each method with a store vs. a load. These fields can be declared as one or more locals.</li> + that are accessed first in each method with a store vs. a load. These fields can be declared as one or more + locals.</li> + <li><b>[NOS] Non Owned Synchronization</b><br> + looks for methods that synchronize on variables that are not owned by the + for their own synchronization purposes. For cleanest separation of interests, only + synchronize on private fields of the class. Note that 'this' is not owned by + the current class and synchronization on 'this' should be avoided as well.</li> </ul> </div> <hr/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |