Author: sebb
Date: Thu Dec 15 01:20:02 2011
New Revision: 1214588
URL: http://svn.apache.org/viewvc?rev=1214588&view=rev
Log:
Javadoc
Modified:
commons/proper/pool/trunk/src/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java
Modified:
commons/proper/pool/trunk/src/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java
URL:
http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java?rev=1214588&r1=1214587&r2=1214588&view=diff
==============================================================================
---
commons/proper/pool/trunk/src/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java
(original)
+++
commons/proper/pool/trunk/src/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java
Thu Dec 15 01:20:02 2011
@@ -1898,7 +1898,7 @@ public class GenericKeyedObjectPool<K,T>
*/
private final AtomicInteger createCount = new AtomicInteger(0);
- /** All instances under management - checked out our idle in the pool.
*/
+ /** All instances under management - checked out or idle in the pool.
*/
private final Map<S, PooledObject<S>> allObjects =
new ConcurrentHashMap<S, PooledObject<S>>();