You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/11/26 17:39:32 UTC

svn commit: r1206485 - /commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/PoolUtils.java

Author: sebb
Date: Sat Nov 26 16:39:32 2011
New Revision: 1206485

URL: http://svn.apache.org/viewvc?rev=1206485&view=rev
Log:
numIdle does not inherit from anything, so cannot use @inheritdoc

Modified:
    commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/PoolUtils.java

Modified: commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/PoolUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/PoolUtils.java?rev=1206485&r1=1206484&r2=1206485&view=diff
==============================================================================
--- commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/PoolUtils.java (original)
+++ commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/PoolUtils.java Sat Nov 26 16:39:32 2011
@@ -2235,9 +2235,6 @@ public final class PoolUtils {
             }
         }
 
-        /**
-         * {@inheritDoc}
-         */
         protected int numIdle(final Object key) {
             return getKeyedPool().getNumIdle();
         }