You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2012/04/24 13:36:31 UTC

svn commit: r1329648 - /commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/overview.html

Author: markt
Date: Tue Apr 24 11:36:31 2012
New Revision: 1329648

URL: http://svn.apache.org/viewvc?rev=1329648&view=rev
Log:
Fix Javadoc warning (ObjectPoolFactory -> PoolableObjectFactory)
Update prose now references to deleted implementations has been removed.
Re-phrase prose so we no longer have a misplaced apostrophe.

Modified:
    commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/overview.html

Modified: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/overview.html
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/overview.html?rev=1329648&r1=1329647&r2=1329648&view=diff
==============================================================================
--- commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/overview.html (original)
+++ commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/overview.html Tue Apr 24 11:36:31 2012
@@ -40,12 +40,16 @@
          {@link org.apache.commons.pool2.impl.SoftReferenceObjectPool
          SoftReferenceObjectPool} has no limit on the number of objects in the
          pool, but the garbage collector can remove idle objects from the pool
-         as needed.  There are also keyed versions of the first two.
+         as needed.  There is also a keyed version of
+         {@link org.apache.commons.pool2.impl.GenericObjectPool
+         GenericObjectPool},
+         {@link org.apache.commons.pool2.impl.GenericKeyedObjectPool
+         GenericKeyedObjectPool}
       </p>
       <p>
-         Here is a simple example of pooling <code>HashMap</code>'s. First
-         create an {@link org.apache.commons.pool2.ObjectPoolFactory
-         ObjectPoolFactory}
+         Here is a simple example of pooling <code>HashMap</code> instances.
+         First create an {@link org.apache.commons.pool2.PoolableObjectFactory
+         PoolableObjectFactory}
       </p>
 <pre>
     public class HashMapFactory