Update of /cvsroot/fb-contrib/fb-contrib/htdocs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17938/htdocs
Modified Files:
index.html
Log Message:
doc BSB
Index: index.html
===================================================================
RCS file: /cvsroot/fb-contrib/fb-contrib/htdocs/index.html,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- index.html 16 Jan 2006 05:05:03 -0000 1.52
+++ index.html 17 Jan 2006 04:00:59 -0000 1.53
@@ -49,12 +49,16 @@
Note: these detectors are still in testing<br/>
<div id="cvs" style="display:none;">
<ul>
+ <li><b>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>
<li><b>Constant List Index</b><br/>
- This method accesses an array or list using a constant integer index. Often,
+ Looks for methods that access an array or list using a constant integer index. Often,
this is a typo where a loop variable is intended to be used. If however, specific
list indices mean different specific things, then perhaps replacing the list with
a first-class object with meaningful accessors would make the code less brittle.</li>
- </ul>
+ </ul>
</div>
<hr/>
|