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

commit 5da8279e958f7987194f61f2a705b21bf0d9a96b
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Jul 18 10:28:35 2023 -0400

    Javadoc
---
 src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java 
b/src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java
index ee14f58f..2bf10bc8 100644
--- a/src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java
+++ b/src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java
@@ -24,14 +24,12 @@ import org.apache.commons.pool2.PooledObject;
  * this interface that provides the required eviction policy.
  *
  * @param <T> the type of objects in the pool
- *
  * @since 2.0
  */
 public interface EvictionPolicy<T> {
 
     /**
-     * This method is called to test if an idle object in the pool should be
-     * evicted or not.
+     * Tests if an idle object in the pool should be evicted or not.
      *
      * @param config    The pool configuration settings related to eviction
      * @param underTest The pooled object being tested for eviction

Reply via email to