Update of /cvsroot/fb-contrib/fb-contrib/htdocs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12608/htdocs
Modified Files:
index.html
Log Message:
new SG - initial checkin
Index: index.html
===================================================================
RCS file: /cvsroot/fb-contrib/fb-contrib/htdocs/index.html,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- index.html 25 Jan 2006 03:31:26 -0000 1.57
+++ index.html 2 Feb 2006 06:18:02 -0000 1.58
@@ -50,6 +50,12 @@
Note: fb-contrib v2.2.0 requires FindBugs™ v0.95 or later<br/>
<div id="cvs" style="display:block;">
<ul>
+ <li><b>Sluggish Gui</b><br/>
+ Looks for methods that implement awt or swing listeners and perform time
+ consuming operations. Doing these operations in the gui thread will cause the
+ interface to appear sluggish and non-responsive to the user. It is better to
+ use a separate thread to do the time consuming work so that the user
+ has a better experience.</li>
<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
|