[Fb-contrib-commit] fb-contrib/htdocs index.html,1.10,1.11
Brought to you by:
dbrosius
From: Dave B. <dbr...@us...> - 2005-09-20 02:31:34
|
Update of /cvsroot/fb-contrib/fb-contrib/htdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29283/htdocs Modified Files: index.html Log Message: document PCOA Index: index.html =================================================================== RCS file: /cvsroot/fb-contrib/fb-contrib/htdocs/index.html,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- index.html 19 Sep 2005 04:22:23 -0000 1.10 +++ index.html 20 Sep 2005 02:31:27 -0000 1.11 @@ -18,6 +18,10 @@ Detectors added in CVS<br/> Note: these detectors are still in testing<br/> <ul> + <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 + to the subclass implementation. These methods should probably be defined as final.</li> <li><b>Literal String Comparison</b><br/> Finds methods that call the equals or compareTo methods on a String variable passing in a String literal. A NullPointerException may occur if the string variable is null. If instead the method was called on |