[Fb-contrib-commit] SF.net SVN: fb-contrib:[1554] trunk/fb-contrib/htdocs/index.shtml
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2010-05-09 06:29:38
|
Revision: 1554
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1554&view=rev
Author: dbrosius
Date: 2010-05-09 06:29:31 +0000 (Sun, 09 May 2010)
Log Message:
-----------
document PCAIL and WOC
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.shtml
Modified: trunk/fb-contrib/htdocs/index.shtml
===================================================================
--- trunk/fb-contrib/htdocs/index.shtml 2010-05-08 22:44:03 UTC (rev 1553)
+++ trunk/fb-contrib/htdocs/index.shtml 2010-05-09 06:29:31 UTC (rev 1554)
@@ -75,6 +75,14 @@
String only collection, putting other types in the Properties object is incorrect,
and takes advantage of a poor design decision by the original Properties class
designers to derive from Hashtable, rather than using aggregation.</li>
+ <li><b>[PCAIL] Possible Constant Allocation in Loop</b><br/>
+ Looks for allocations of objects using the default constructor in a loop, where
+ the object allocated is never assigned to any object that is used outside the loop.
+ It is possible that this allocation can be done outside the loop to avoid excessive garbage.</li>
+ <li><b>[WOC] Write Only Collection</b><br/>
+ Looks for allocations and initializations of java collections, but that are never
+ read from or accessed to gain information. This represents a collection of no use, and most probably
+ can be removed. It is similar to a dead local store.</li>
</ul>
</div>
<hr/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|