[Fb-contrib-commit] SF.net SVN: fb-contrib: [513] trunk/fb-contrib
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-05-02 02:02:16
|
Revision: 513 Author: dbrosius Date: 2006-05-01 19:02:10 -0700 (Mon, 01 May 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=513&view=rev Log Message: ----------- Prepare for the 2.6.0 release Modified Paths: -------------- trunk/fb-contrib/build.xml trunk/fb-contrib/htdocs/index.html Modified: trunk/fb-contrib/build.xml =================================================================== --- trunk/fb-contrib/build.xml 2006-05-01 02:53:42 UTC (rev 512) +++ trunk/fb-contrib/build.xml 2006-05-02 02:02:10 UTC (rev 513) @@ -19,7 +19,7 @@ <property name="javac.deprecation" value="on"/> <property name="javac.debug" value="on"/> - <property name="fb-contrib.version" value="2.5.0"/> + <property name="fb-contrib.version" value="2.6.0"/> <target name="clean" description="removes all generated collateral"> <delete dir="${classes.dir}"/> @@ -133,7 +133,7 @@ destdir="${javadoc.dir}" windowtitle="fb-contrib api"> <doctitle><![CDATA[<h1>fb-contrib javadoc</h1>]]></doctitle> - <bottom><![CDATA[<i>Copyright © 2005 MeBigFatGuy.com. All Rights Reserved.</i>]]></bottom> + <bottom><![CDATA[<i>Copyright © 2005-2006 MeBigFatGuy.com. All Rights Reserved.</i>]]></bottom> </javadoc> </target> </project> \ No newline at end of file Modified: trunk/fb-contrib/htdocs/index.html =================================================================== --- trunk/fb-contrib/htdocs/index.html 2006-05-01 02:53:42 UTC (rev 512) +++ trunk/fb-contrib/htdocs/index.html 2006-05-02 02:02:10 UTC (rev 513) @@ -46,16 +46,23 @@ <a href="javadoc/index.html">JavaDoc</a> <hr/> - <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/> - Also note that the svn version of fb-contrib requires FindBugs v0.9.7.<br/> - <div id="svn" style="display:block;"> + <img id="svn_image" src="flip1.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/> + Detectors added in svn + <div id="svn" style="display:none;"> <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> + </ul> + </div> + + <hr/> + <img id="v2_6_0_image" src="flip2.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;"> + <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 that are accessed first in each method with a store vs. a load. These fields can be declared as one or more This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |