You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2010/10/12 01:33:52 UTC

svn commit: r1021547 - /commons/proper/pool/trunk/src/java/org/apache/commons/pool/PoolUtils.java

Author: ggregory
Date: Mon Oct 11 23:33:51 2010
New Revision: 1021547

URL: http://svn.apache.org/viewvc?rev=1021547&view=rev
Log:
Use the active voice in Javadocs and @link

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

Modified: commons/proper/pool/trunk/src/java/org/apache/commons/pool/PoolUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/java/org/apache/commons/pool/PoolUtils.java?rev=1021547&r1=1021546&r2=1021547&view=diff
==============================================================================
--- commons/proper/pool/trunk/src/java/org/apache/commons/pool/PoolUtils.java (original)
+++ commons/proper/pool/trunk/src/java/org/apache/commons/pool/PoolUtils.java Mon Oct 11 23:33:51 2010
@@ -281,7 +281,7 @@ public final class PoolUtils {
     }
 
     /**
-     * Call <code>addObject()</code> on <code>pool</code> <code>count</code> number of times.
+     * Calls {@link ObjectPool#addObject()} on <code>pool</code> <code>count</code> number of times.
      *
      * @param pool the pool to prefill.
      * @param count the number of idle objects to add.
@@ -299,7 +299,7 @@ public final class PoolUtils {
     }
 
     /**
-     * Call <code>addObject(Object)</code> on <code>keyedPool</code> with <code>key</code> <code>count</code>
+     * Calls {@link ObjectPool#addObject()} on <code>keyedPool</code> with <code>key</code> <code>count</code>
      * number of times.
      *
      * @param keyedPool the keyedPool to prefill.
@@ -322,7 +322,7 @@ public final class PoolUtils {
     }
 
     /**
-     * Call <code>addObject(Object)</code> on <code>keyedPool</code> with each key in <code>keys</code> for
+     * Calls {@link ObjectPool#addObject()} on <code>keyedPool</code> with each key in <code>keys</code> for
      * <code>count</code> number of times. This has the same effect as calling
      * {@link #prefill(KeyedObjectPool, Object, int)} for each key in the <code>keys</code> collection.
      *