[Fb-contrib-commit] fb-contrib/htdocs index.html,1.11,1.12
Brought to you by:
dbrosius
From: Dave B. <dbr...@us...> - 2005-09-22 05:53:12
|
Update of /cvsroot/fb-contrib/fb-contrib/htdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20666/htdocs Modified Files: index.html Log Message: document DLC Index: index.html =================================================================== RCS file: /cvsroot/fb-contrib/fb-contrib/htdocs/index.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- index.html 20 Sep 2005 02:31:27 -0000 1.11 +++ index.html 22 Sep 2005 05:53:04 -0000 1.12 @@ -18,6 +18,10 @@ Detectors added in CVS<br/> Note: these detectors are still in testing<br/> <ul> + <li><b>Dubious List Collection</b><br/> + Finds fields that are implementations of java.util.List, but that are used in a set-like fashion. + Since lookup type operations are performed using a linear search for Lists, the performance for large + Lists will be poor. Consideration should be made as to whether these fields should be sets.</li> <li><b>Partially Constructed Object Access</b><br/> Finds constructors that call non-final methods in non-final classes. If this class is derived from, and the method is overridden, then that method will be executing on an object that hasn't been constructed in regards |