[Fb-contrib-commit] SF.net SVN: fb-contrib: [902] trunk/fb-contrib/htdocs/index.html
Brought to you by:
dbrosius
From: <dbr...@us...> - 2007-09-15 04:36:08
|
Revision: 902 http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=902&view=rev Author: dbrosius Date: 2007-09-14 21:36:12 -0700 (Fri, 14 Sep 2007) Log Message: ----------- expand svn now Modified Paths: -------------- trunk/fb-contrib/htdocs/index.html Modified: trunk/fb-contrib/htdocs/index.html =================================================================== --- trunk/fb-contrib/htdocs/index.html 2007-09-15 04:34:33 UTC (rev 901) +++ trunk/fb-contrib/htdocs/index.html 2007-09-15 04:36:12 UTC (rev 902) @@ -48,28 +48,28 @@ <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 add in svn<br/> - <div id="svn" style="display:none;"> + <div id="svn" style="display:block;"> <ul> - <li><b>[MRC] Method returns Constant</b><br/> - Looks for private methods that can only return one constant value. - Either the class should return a value, or perhaps a branch was missed. + <li><b>[SJVU] Suspicious JDK Version Use</b><br/> + Looks for calls to classes and methods that do not exist in the JDK for which this class is + compiled. This can happen if you specify the -source and -target options of the javac compiler, and + specify a target that is less than the jdk version of the javac compiler.</li> <li><b>[UAA] Use Add All</b><br/> Looks for loops that transfers the contents of one collection to another. These collection sources might be local variables or member fields, including sets, maps key/values, lists, or arrays. It is simpler to just use the addAll method of the collection class. In the case where the source is an array, you can use Arrays.asList(array), and use that as the source to addAll.</li> - <li><b>[SJVU] Suspicious JDK Version Use</b><br/> - Looks for calls to classes and methods that do not exist in the JDK for which this class is - compiled. This can happen if you specify the -source and -target options of the javac compiler, and - specify a target that is less than the jdk version of the javac compiler.</li> + <li><b>[MRC] Method returns Constant</b><br/> + Looks for private methods that can only return one constant value. + Either the class should return a value, or perhaps a branch was missed. </ul> </div> <hr/> - <img id="v3_2_0_image" src="flip2.gif" onClick="toggleBlock('v3_2_0', 'v3_2_0_image');" align="top"/> + <img id="v3_2_0_image" src="flip1.gif" onClick="toggleBlock('v3_2_0', 'v3_2_0_image');" align="top"/> Detectors added in v3.2.0<br/> - <div id="v3_2_0" style="display:block;"> + <div id="v3_2_0" style="display:none;"> <ul> <li><b>[SCRV] Suspicious Comparator Return Values</b><br/> Looks for classes that implement Comparator or Comparable, and whose compare or compareTo This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |