[Fb-contrib-commit] SF.net SVN: fb-contrib:[1718] trunk/fb-contrib
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2012-10-19 22:08:45
|
Revision: 1718
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1718&view=rev
Author: dbrosius
Date: 2012-10-19 22:08:38 +0000 (Fri, 19 Oct 2012)
Log Message:
-----------
sync from github
Modified Paths:
--------------
trunk/fb-contrib/build.xml
trunk/fb-contrib/etc/findbugs.xml
trunk/fb-contrib/htdocs/index.shtml
Modified: trunk/fb-contrib/build.xml
===================================================================
--- trunk/fb-contrib/build.xml 2012-10-19 22:01:45 UTC (rev 1717)
+++ trunk/fb-contrib/build.xml 2012-10-19 22:08:38 UTC (rev 1718)
@@ -17,7 +17,7 @@
<property name="javac.deprecation" value="on" />
<property name="javac.debug" value="on" />
- <property name="fb-contrib.version" value="4.7.0" />
+ <property name="fb-contrib.version" value="4.8.0" />
<property name="findbugs.version" value="2.0.0" />
<property name="findbugs-bcel.version" value="2.0.0" />
Modified: trunk/fb-contrib/etc/findbugs.xml
===================================================================
--- trunk/fb-contrib/etc/findbugs.xml 2012-10-19 22:01:45 UTC (rev 1717)
+++ trunk/fb-contrib/etc/findbugs.xml 2012-10-19 22:08:38 UTC (rev 1718)
@@ -221,9 +221,9 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.SuspiciousGetterSetterUse" speed="fast" reports="SGSU_SUSPICIOUS_GETTER_SETTER_USE" />
<Detector class="com.mebigfatguy.fbcontrib.detect.LingeringGraphicsObjects" speed="fast" reports="LGO_LINGERING_GRAPHICS_OBJECT" />
-
+<!--
<Detector class="com.mebigfatguy.fbcontrib.detect.StackedTryBlocks" speed="fast" reports="STB_STACKED_TRY_BLOCKS" />
-
+ -->
<Detector class="com.mebigfatguy.fbcontrib.detect.CommonsEqualsBuilderToEquals" speed="fast" reports="CEBE_COMMONS_EQUALS_BUILDER_ISEQUALS" />
<Detector class="com.mebigfatguy.fbcontrib.detect.CommonsHashcodeBuilderToHashcode" speed="fast" reports="CHTH_COMMONS_HASHCODE_BUILDER_TOHASHCODE" />
Modified: trunk/fb-contrib/htdocs/index.shtml
===================================================================
--- trunk/fb-contrib/htdocs/index.shtml 2012-10-19 22:01:45 UTC (rev 1717)
+++ trunk/fb-contrib/htdocs/index.shtml 2012-10-19 22:08:38 UTC (rev 1718)
@@ -72,25 +72,32 @@
<a href="http://sourceforge.net/projects/fb-contrib/files/Current/fb-contrib-4.6.1.jar/download">here</a>.</p>
</div>
+ <hr/>
+ <img id="svn_image" src="flip1.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/>
+ Detectors added in svn<br/>
+ <div id="svn" style="display:none;">
+ <ul>
+ <li><b>[CVAA] ContraVariant Array Assignment</b><br/>
+ Looks for contravariant array assignments. Since arrays are mutable data structures, their use
+ must be restricted to covariant or invariant usage.<br/>
+ <span style="color: #0000FF;">--contributed by Bhaskar Maddala - THANKS!</span></li>
+ <li><b>[STB] Stacked Try Blocks</b><br/>
+ Looks for two or more try catch blocks that are consecutive and catch the
+ same kind of exception, and throw the same exception always. These blocks can
+ be coalesced into one.
+ </li>
+ </ul>
+ </div>
<hr/>
- <img id="svn_image" src="flip2.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/>
- Detectors added in svn<br/>
- <div id="svn" style="display:block;">
+ <img id="v4_8_0_image" src="flip2.gif" onClick="toggleBlock('v4_8_0', 'v4_8_0_image');" align="top"/>
+ Detectors added in v4.8.0<br/>
+ <div id="v4_8_0" style="display:block;">
<ul>
- <li><b>[CVAA] ContraVariant Array Assignment</b><br/>
- Looks for contravariant array assignments. Since arrays are mutable data structures, their use
- must be restricted to covariant or invariant usage.<br/>
- <span style="color: #0000FF;">--contributed by Bhaskar Maddala - THANKS!</span></li>
<li><b>[LGO] Lingering Graphics Object</b><br/>
Looks for creation of java.awt.Graphics object that do not have the
.dispose() method called on them when finished. These objects will be cleaned up by
the Garbage collector, bug given the likelyhood that large numbers of these objects can
be created in a short period of time, it is better to dispose them as soon as possible.</li>
- <li><b>[STB] Stacked Try Blocks</b><br/>
- Looks for two or more try catch blocks that are consecutive and catch the
- same kind of exception, and throw the same exception always. These blocks can
- be coalesced into one.
- </li>
<li><b>[CCNE] Compare Class Name Equals</b><br/>
Looks for code that compares to classes by name, rather than by just comparing the
classes with ==<br/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|