[Fb-contrib-commit] SF.net SVN: fb-contrib:[1178] trunk/fb-contrib/htdocs/index.html
Brought to you by:
dbrosius
From: <dbr...@us...> - 2009-04-25 01:45:23
|
Revision: 1178 http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1178&view=rev Author: dbrosius Date: 2009-04-25 01:44:44 +0000 (Sat, 25 Apr 2009) Log Message: ----------- document DTEP Modified Paths: -------------- trunk/fb-contrib/htdocs/index.html Modified: trunk/fb-contrib/htdocs/index.html =================================================================== --- trunk/fb-contrib/htdocs/index.html 2009-04-24 06:51:13 UTC (rev 1177) +++ trunk/fb-contrib/htdocs/index.html 2009-04-25 01:44:44 UTC (rev 1178) @@ -48,20 +48,24 @@ <a href="bugdescriptions.html">Bug Descriptions</a> <hr/> - <img id="svn_image" src="flip1.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/> + <img id="svn_image" src="flip2.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/> Detectors added in SVN<br/> - <div id="svn" style="display:none;"> + <div id="svn" style="display:block;"> <ul> <li><b>[BED] Bogus Exception Declaration</b><br/> Looks for constructors, private methods or static methods that declare that they throw specific checked exceptions, but that do not. This just causes callers of these methods to do extra work to handle an exception that will never be thrown.</li> + <li><b>[DTEP] Deprecated Typesafe Enum Pattern</b><br/> + Looks for classes that appear to implement the old style type safe enum pattern + that was used before java added Enum support to the language. Since this class is + compiled with java 1.5 or later, it would be simpler to just use java enums.</li> </ul> </div> <hr/> - <img id="v3_8_0_image" src="flip2.gif" onClick="toggleBlock('v3_8_0', 'v3_8_0_image');" align="top"/> + <img id="v3_8_0_image" src="flip1.gif" onClick="toggleBlock('v3_8_0', 'v3_8_0_image');" align="top"/> Detectors added in v3.8.0<br/> - <div id="v3_8_0" style="display:block;"> + <div id="v3_8_0" style="display:none;"> <ul> <li><b>[DSOC] Dubious Set of Collections</b><br/> Looks for sets or keySets of maps that contain other collections. As typically collections calculate This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |