Repository: commons-pool Updated Branches: refs/heads/master 4ef3a4d47 -> ee91737e9
Javadoc improvements. Project: http://git-wip-us.apache.org/repos/asf/commons-pool/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-pool/commit/ee91737e Tree: http://git-wip-us.apache.org/repos/asf/commons-pool/tree/ee91737e Diff: http://git-wip-us.apache.org/repos/asf/commons-pool/diff/ee91737e Branch: refs/heads/master Commit: ee91737e9f5b395801cbc15ebc81854614a4bf18 Parents: 4ef3a4d Author: Gary Gregory <garydgreg...@gmail.com> Authored: Sat May 26 09:50:00 2018 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Sat May 26 09:50:00 2018 -0600 ---------------------------------------------------------------------- .../java/org/apache/commons/pool2/PooledObjectFactory.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-pool/blob/ee91737e/src/main/java/org/apache/commons/pool2/PooledObjectFactory.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/pool2/PooledObjectFactory.java b/src/main/java/org/apache/commons/pool2/PooledObjectFactory.java index d87d8ab..6adb778 100644 --- a/src/main/java/org/apache/commons/pool2/PooledObjectFactory.java +++ b/src/main/java/org/apache/commons/pool2/PooledObjectFactory.java @@ -69,8 +69,9 @@ package org.apache.commons.pool2; * @since 2.0 */ public interface PooledObjectFactory<T> { + /** - * Create an instance that can be served by the pool and wrap it in a + * 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 @@ -112,7 +113,7 @@ public interface PooledObjectFactory<T> { boolean validateObject(PooledObject<T> p); /** - * Reinitialize an instance to be returned by the pool. + * Reinitializes an instance to be returned by the pool. * * @param p a {@code PooledObject} wrapping the instance to be activated * @@ -124,7 +125,7 @@ public interface PooledObjectFactory<T> { void activateObject(PooledObject<T> p) throws Exception; /** - * Uninitialize an instance to be returned to the idle object pool. + * Uninitializes an instance to be returned to the idle object pool. * * @param p a {@code PooledObject} wrapping the instance to be passivated *