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 2007/12/24 21:09:59 UTC

svn commit: r606735 - /commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/PoolUtils.java

Author: psteitz
Date: Mon Dec 24 12:09:59 2007
New Revision: 606735

URL: http://svn.apache.org/viewvc?rev=606735&view=rev
Log:
Changed @since tags to 1.4 on eroding pool decorators.

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

Modified: commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/PoolUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/PoolUtils.java?rev=606735&r1=606734&r2=606735&view=diff
==============================================================================
--- commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/PoolUtils.java (original)
+++ commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/PoolUtils.java Mon Dec 24 12:09:59 2007
@@ -422,7 +422,7 @@
      * @param pool the ObjectPool to be decorated so it shrinks it's idle count when possible.
      * @return a pool that adaptively decreases it's size when idle objects are no longer needed.
      * @see #erodingPool(ObjectPool, float)
-     * @since Pool 2.0
+     * @since Pool 1.4
      */
     public static ObjectPool erodingPool(final ObjectPool pool) {
         return erodingPool(pool, 1f);
@@ -446,7 +446,7 @@
      * If 1 < factor then the pool shrinks less aggressively.
      * @return a pool that adaptively decreases it's size when idle objects are no longer needed.
      * @see #erodingPool(ObjectPool)
-     * @since Pool 2.0
+     * @since Pool 1.4
      */
     public static ObjectPool erodingPool(final ObjectPool pool, final float factor) {
         if (pool == null) {
@@ -469,7 +469,7 @@
      * @return a pool that adaptively decreases it's size when idle objects are no longer needed.
      * @see #erodingPool(KeyedObjectPool, float)
      * @see #erodingPool(KeyedObjectPool, float, boolean)
-     * @since Pool 2.0
+     * @since Pool 1.4
      */
     public static KeyedObjectPool erodingPool(final KeyedObjectPool keyedPool) {
         return erodingPool(keyedPool, 1f);
@@ -494,7 +494,7 @@
      * If 1 < factor then the pool shrinks less aggressively.
      * @return a pool that adaptively decreases it's size when idle objects are no longer needed.
      * @see #erodingPool(KeyedObjectPool, float, boolean)
-     * @since Pool 2.0
+     * @since Pool 1.4
      */
     public static KeyedObjectPool erodingPool(final KeyedObjectPool keyedPool, final float factor) {
         return erodingPool(keyedPool, factor, false);
@@ -527,7 +527,7 @@
      * @return a pool that adaptively decreases it's size when idle objects are no longer needed.
      * @see #erodingPool(KeyedObjectPool)
      * @see #erodingPool(KeyedObjectPool, float)
-     * @since Pool 2.0
+     * @since Pool 1.4
      */
     public static KeyedObjectPool erodingPool(final KeyedObjectPool keyedPool, final float factor, final boolean perKey) {
         if (keyedPool == null) {