This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch POOL_2_X in repository https://gitbox.apache.org/repos/asf/commons-pool.git
The following commit(s) were added to refs/heads/POOL_2_X by this push: new 8580d71a Javadoc 8580d71a is described below commit 8580d71abfaa5d436d25e2d95b89d989764fa363 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu May 1 16:48:56 2025 -0400 Javadoc --- .../java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java | 5 +++-- 1 file changed, 3 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 85c74294..4efde590 100644 --- a/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java +++ b/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java @@ -1225,8 +1225,9 @@ public abstract class BaseGenericObjectPool<T> extends BaseObject implements Aut } /** - * Tests whether this pool instance been closed. - * @return {@code true} when this pool has been closed. + * Tests whether this pool instance is closed. + * + * @return {@code true} when this pool is closed. */ public final boolean isClosed() { return closed;