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
The following commit(s) were added to refs/heads/master by this push:
new c88d3571 Javadoc
c88d3571 is described below
commit c88d35711d2ecb0c36d145e49b1d5042cc72bf2f
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jan 25 17:45:13 2023 -0500
Javadoc
---
src/main/java/org/apache/commons/pool2/PooledObjectFactory.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/pool2/PooledObjectFactory.java
b/src/main/java/org/apache/commons/pool2/PooledObjectFactory.java
index a302a288..c9c97837 100644
--- a/src/main/java/org/apache/commons/pool2/PooledObjectFactory.java
+++ b/src/main/java/org/apache/commons/pool2/PooledObjectFactory.java
@@ -132,7 +132,7 @@ public interface PooledObjectFactory<T, E extends
Exception> {
* Creates an instance that can be served by the pool and wrap it in a
* {@link PooledObject} to be managed by the pool.
*
- * @return a {@code PooledObject} wrapping an instance that can be served by
the pool
+ * @return a {@code PooledObject} wrapping an instance that can be served by
the pool, not null.
*
* @throws E if there is a problem creating a new instance,
* this will be propagated to the code requesting an object.