Author: sebb Date: Mon Apr 30 23:39:56 2012 New Revision: 1332473 URL: http://svn.apache.org/viewvc?rev=1332473&view=rev Log: Javadoc
Modified: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java Modified: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java?rev=1332473&r1=1332472&r2=1332473&view=diff ============================================================================== --- commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java (original) +++ commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java Mon Apr 30 23:39:56 2012 @@ -397,7 +397,7 @@ public abstract class BaseGenericObjectP * of the idle object evictor thread. When positive, the number of tests * performed for a run will be the minimum of the configured value and the * number of idle instances in the pool. When negative, the number of tests - * performed will be <code>ceil({@link #getNumIdle}/ + * performed will be <code>ceil({@link org.apache.commons.pool2.ObjectPool#getNumIdle #getNumIdle}/ * abs({@link #getNumTestsPerEvictionRun})) whch means that when the value * is <code>-n</code> roughly one nth of the idle objects will be tested per * run. @@ -416,7 +416,7 @@ public abstract class BaseGenericObjectP * of the idle object evictor thread. When positive, the number of tests * performed for a run will be the minimum of the configured value and the * number of idle instances in the pool. When negative, the number of tests - * performed will be <code>ceil({@link #getNumIdle}/ + * performed will be <code>ceil({@link org.apache.commons.pool2.ObjectPool#getNumIdle() #getNumIdle()}/ * abs({@link #getNumTestsPerEvictionRun})) whch means that when the value * is <code>-n</code> roughly one nth of the idle objects will be tested per * run.