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 2012/05/01 01:33:41 UTC

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

Author: sebb
Date: Mon Apr 30 23:33:41 2012
New Revision: 1332470

URL: http://svn.apache.org/viewvc?rev=1332470&view=rev
Log:
Javadoc

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

Modified: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java?rev=1332470&r1=1332469&r2=1332470&view=diff
==============================================================================
--- commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java (original)
+++ commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java Mon Apr 30 23:33:41 2012
@@ -99,10 +99,10 @@ import org.apache.commons.pool2.PoolUtil
  *      When {@link #getBlockWhenExhausted} is true,
  *      {@link #borrowObject borrowObject} will block
  *      (invoke {@link Object#wait() wait} until a new or idle object is available.
- *      If a non-negative {@link #setMaxWait maxWait}
+ *      If a non-negative {@link #setMaxWaitMillis(long) maxWait}
  *      value is supplied, the {@link #borrowObject borrowObject} will block for at
  *      most that many milliseconds, after which a {@link NoSuchElementException}
- *      will be thrown.  If {@link #setMaxWait maxWait} is negative,
+ *      will be thrown.  If {@link #setMaxWaitMillis(long) maxWait} is negative,
  *      the {@link #borrowObject borrowObject} method will block indefinitely.
  *    </li>
  *    </ul>