You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2015/03/02 23:34:25 UTC

svn commit: r1663452 - /commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java

Author: psteitz
Date: Mon Mar  2 22:34:25 2015
New Revision: 1663452

URL: http://svn.apache.org/r1663452
Log:
Reverted change inadvertently committed in r1663451

Modified:
    commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java

Modified: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java?rev=1663452&r1=1663451&r2=1663452&view=diff
==============================================================================
--- commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java (original)
+++ commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java Mon Mar  2 22:34:25 2015
@@ -1120,8 +1120,7 @@ public class GenericObjectPool<T> extend
      * wrappers used internally by the pool.
      */
     private final Map<T, PooledObject<T>> allObjects =
-        new StaticBucketMap<T, PooledObject<T>>();
-        //new ConcurrentHashMap<T, PooledObject<T>>();
+        new ConcurrentHashMap<T, PooledObject<T>>();
     /*
      * The combined count of the currently created objects and those in the
      * process of being created. Under load, it may exceed {@link #_maxActive}