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 b78bf661 Javadoc
b78bf661 is described below
commit b78bf661c00638bc3a54f140a90c0b60ba8a3f8c
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jan 25 17:42:58 2023 -0500
Javadoc
---
src/main/java/org/apache/commons/pool2/BasePooledObjectFactory.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/main/java/org/apache/commons/pool2/BasePooledObjectFactory.java
b/src/main/java/org/apache/commons/pool2/BasePooledObjectFactory.java
index 3e1dee9e..5b66427e 100644
--- a/src/main/java/org/apache/commons/pool2/BasePooledObjectFactory.java
+++ b/src/main/java/org/apache/commons/pool2/BasePooledObjectFactory.java
@@ -48,9 +48,9 @@ public abstract class BasePooledObjectFactory<T, E extends
Exception> extends Ba
/**
* Creates an object instance, to be wrapped in a {@link PooledObject}.
* <p>This method <strong>must</strong> support concurrent, multi-threaded
- * activation.</p>
+ * invocation.</p>
*
- * @return an instance to be served by the pool
+ * @return an instance to 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.