[Fb-contrib-commit] fb-contrib/htdocs index.html,1.63,1.64
Brought to you by:
dbrosius
From: Dave B. <dbr...@us...> - 2006-02-18 03:03:48
|
Update of /cvsroot/fb-contrib/fb-contrib/htdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6605/htdocs Modified Files: index.html Log Message: get ready for the 2.2.0 release Index: index.html =================================================================== RCS file: /cvsroot/fb-contrib/fb-contrib/htdocs/index.html,v retrieving revision 1.63 retrieving revision 1.64 diff -u -d -r1.63 -r1.64 --- index.html 6 Feb 2006 02:10:58 -0000 1.63 +++ index.html 18 Feb 2006 03:03:41 -0000 1.64 @@ -46,16 +46,24 @@ <a href="javadoc/index.html">JavaDoc</a> <hr/> - <img id="cvs_image" src="flip2.gif" onClick="toggleBlock('cvs', 'cvs_image');" align="top"/> + <img id="cvs_image" src="flip1.gif" onClick="toggleBlock('cvs', 'cvs_image');" align="top"/> Detectors added in CVS<br/> Note: these detectors are still in testing<br/> - Note: fb-contrib v2.2.0 requires FindBugs™ v0.95 or later<br/> - <div id="cvs" style="display:block;"> + <div id="cvs" style="display:none;"> <ul> <li><b>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> + </ul> + </div> + + <hr/> + <img id="v2_2_0_image" src="flip2.gif" onClick="toggleBlock('v2_2_0', 'v2_2_0_image');" align="top"/> + Detectors added in 2.2.0<br/> + Note: fb-contrib v2.2.0 requires FindBugs™ v0.95 or later<br/> + <div id="v2_2_0" style="display:block;"> + <ul> <li><b>Constant List Index</b><br/> Looks for methods that access an array or list using a constant integer index. Often, this is a typo where a loop variable is intended to be used. If however, specific |