This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-pool.git
commit b2d5fa8fe3497760bed55c3758f8f497cbe4b518 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Mon Aug 23 08:34:27 2021 -0400 Javadoc. --- .../java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java b/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java index ad864ae..39dca27 100644 --- a/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java +++ b/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java @@ -1736,7 +1736,7 @@ public abstract class BaseGenericObjectPool<T> extends BaseObject { * @param timeBetweenEvictionRuns * duration to sleep between evictor runs * - * @see #getTimeBetweenEvictionRunsMillis + * @see #getDurationBetweenEvictionRuns() * @since 2.10.0 */ public final void setTimeBetweenEvictionRuns(final Duration timeBetweenEvictionRuns) { @@ -1754,7 +1754,7 @@ public abstract class BaseGenericObjectPool<T> extends BaseObject { * @param timeBetweenEvictionRunsMillis * number of milliseconds to sleep between evictor runs * - * @see #getTimeBetweenEvictionRunsMillis + * @see #getDurationBetweenEvictionRuns() * @deprecated Use {@link #setTimeBetweenEvictionRuns(Duration)}. */ @Deprecated