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:35:25 UTC

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

Author: sebb
Date: Mon Apr 30 23:35:25 2012
New Revision: 1332471

URL: http://svn.apache.org/viewvc?rev=1332471&view=rev
Log:
Javadoc: maxWait => maxWaitMillis

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

Modified: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseObjectPoolConfig.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseObjectPoolConfig.java?rev=1332471&r1=1332470&r2=1332471&view=diff
==============================================================================
--- commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseObjectPoolConfig.java (original)
+++ commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseObjectPoolConfig.java Mon Apr 30 23:35:25 2012
@@ -35,7 +35,7 @@ public abstract class BaseObjectPoolConf
     /**
      * The default value for the {@code maxWait} configuration attribute.
      * @see GenericObjectPool#getMaxWaitMillis()
-     * @see GenericKeyedObjectPool#getMaxWait()
+     * @see GenericKeyedObjectPool#getMaxWaitMillis()
      */
     public static final long DEFAULT_MAX_WAIT_MILLIS = -1L;
 
@@ -180,7 +180,7 @@ public abstract class BaseObjectPoolConf
      * Get the value for the {@code maxWait} configuration attribute for pools
      * created with this configuration instance.
      * @see GenericObjectPool#getMaxWaitMillis()
-     * @see GenericKeyedObjectPool#getMaxWait()
+     * @see GenericKeyedObjectPool#getMaxWaitMillis()
      */
     public long getMaxWaitMillis() {
         return maxWaitMillis;
@@ -190,7 +190,7 @@ public abstract class BaseObjectPoolConf
      * Set the value for the {@code maxWait} configuration attribute for pools
      * created with this configuration instance.
      * @see GenericObjectPool#getMaxWaitMillis()
-     * @see GenericKeyedObjectPool#getMaxWait()
+     * @see GenericKeyedObjectPool#getMaxWaitMillis()
      */
     public void setMaxWaitMillis(long maxWaitMillis) {
         this.maxWaitMillis = maxWaitMillis;