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 6c70047b Normalize getter Javadoc
6c70047b is described below

commit 6c70047bf1eb601d9a98bef0af977ca0de9f9b4f
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Oct 31 06:55:17 2023 -0400

    Normalize getter Javadoc
---
 .../apache/commons/pool3/impl/GenericKeyedObjectPoolConfig.java   | 8 ++++----
 .../org/apache/commons/pool3/impl/GenericObjectPoolConfig.java    | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolConfig.java 
b/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolConfig.java
index e5953f48..38f1018f 100644
--- 
a/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolConfig.java
+++ 
b/src/main/java/org/apache/commons/pool3/impl/GenericKeyedObjectPoolConfig.java
@@ -80,7 +80,7 @@ public class GenericKeyedObjectPoolConfig<T> extends 
BaseObjectPoolConfig<T> {
     }
 
     /**
-     * Get the value for the {@code maxIdlePerKey} configuration attribute
+     * Gets the value for the {@code maxIdlePerKey} configuration attribute
      * for pools created with this configuration instance.
      *
      * @return  The current setting of {@code maxIdlePerKey} for this
@@ -93,7 +93,7 @@ public class GenericKeyedObjectPoolConfig<T> extends 
BaseObjectPoolConfig<T> {
     }
 
     /**
-     * Get the value for the {@code maxTotal} configuration attribute
+     * Gets the value for the {@code maxTotal} configuration attribute
      * for pools created with this configuration instance.
      *
      * @return  The current setting of {@code maxTotal} for this
@@ -106,7 +106,7 @@ public class GenericKeyedObjectPoolConfig<T> extends 
BaseObjectPoolConfig<T> {
     }
 
     /**
-     * Get the value for the {@code maxTotalPerKey} configuration attribute
+     * Gets the value for the {@code maxTotalPerKey} configuration attribute
      * for pools created with this configuration instance.
      *
      * @return  The current setting of {@code maxTotalPerKey} for this
@@ -119,7 +119,7 @@ public class GenericKeyedObjectPoolConfig<T> extends 
BaseObjectPoolConfig<T> {
     }
 
     /**
-     * Get the value for the {@code minIdlePerKey} configuration attribute
+     * Gets the value for the {@code minIdlePerKey} configuration attribute
      * for pools created with this configuration instance.
      *
      * @return  The current setting of {@code minIdlePerKey} for this
diff --git 
a/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolConfig.java 
b/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolConfig.java
index 30c85a31..463df9e4 100644
--- a/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolConfig.java
+++ b/src/main/java/org/apache/commons/pool3/impl/GenericObjectPoolConfig.java
@@ -66,7 +66,7 @@ public class GenericObjectPoolConfig<T> extends 
BaseObjectPoolConfig<T> {
     }
 
     /**
-     * Get the value for the {@code maxIdle} configuration attribute
+     * Gets the value for the {@code maxIdle} configuration attribute
      * for pools created with this configuration instance.
      *
      * @return  The current setting of {@code maxIdle} for this
@@ -80,7 +80,7 @@ public class GenericObjectPoolConfig<T> extends 
BaseObjectPoolConfig<T> {
 
 
     /**
-     * Get the value for the {@code maxTotal} configuration attribute
+     * Gets the value for the {@code maxTotal} configuration attribute
      * for pools created with this configuration instance.
      *
      * @return  The current setting of {@code maxTotal} for this
@@ -93,7 +93,7 @@ public class GenericObjectPoolConfig<T> extends 
BaseObjectPoolConfig<T> {
     }
 
     /**
-     * Get the value for the {@code minIdle} configuration attribute
+     * Gets the value for the {@code minIdle} configuration attribute
      * for pools created with this configuration instance.
      *
      * @return  The current setting of {@code minIdle} for this

Reply via email to