[Fb-contrib-commit] SF.net SVN: fb-contrib: [568] trunk/fb-contrib/htdocs/index.html
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2006-06-20 03:24:53
|
Revision: 568 Author: dbrosius Date: 2006-06-19 20:24:48 -0700 (Mon, 19 Jun 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=568&view=rev Log Message: ----------- doc UTA Modified Paths: -------------- trunk/fb-contrib/htdocs/index.html Modified: trunk/fb-contrib/htdocs/index.html =================================================================== --- trunk/fb-contrib/htdocs/index.html 2006-06-19 05:47:54 UTC (rev 567) +++ trunk/fb-contrib/htdocs/index.html 2006-06-20 03:24:48 UTC (rev 568) @@ -47,7 +47,8 @@ <hr/> <img id="svn_image" src="flip2.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/> - Detectors added in svn + Detectors added in svn<br/> + Note: This version of fb-contrib requires FindBugs v1.0.0<br/> <div id="svn" style="display:block;"> <ul> <li><b>[BSB] Bloated Synchronized Block</b><br/> @@ -65,6 +66,10 @@ <li><b>[RMC] Redundant Method Calls</b><br/> Looks for calls of the same method on the same object when that object hasn't changed. This often is redundant, and the second call can be removed, or combined.</li> + <li><b>[UTA]Use toArray</b><br/> + Looks for code that builds an array of values from a collection, by manually looping + over the elements of the collection, and adding them to the array. It is simpler and + cleaner to use mycollection.toArray(new type[mycollection.size()].</li> </ul> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |