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
The following commit(s) were added to refs/heads/POOL_2_X by this push: new 77da93a2 Normalize getter Javadoc 77da93a2 is described below commit 77da93a2cf4b2e32b837d470c8f709b482be2d98 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 31 06:55:03 2023 -0400 Normalize getter Javadoc --- .../apache/commons/pool2/impl/GenericKeyedObjectPoolConfig.java | 8 ++++---- .../org/apache/commons/pool2/impl/GenericObjectPoolConfig.java | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPoolConfig.java b/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPoolConfig.java index e9a7a29e..6b6b7fc2 100644 --- a/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPoolConfig.java +++ b/src/main/java/org/apache/commons/pool2/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/pool2/impl/GenericObjectPoolConfig.java b/src/main/java/org/apache/commons/pool2/impl/GenericObjectPoolConfig.java index 8bdd7f32..abc5ea71 100644 --- a/src/main/java/org/apache/commons/pool2/impl/GenericObjectPoolConfig.java +++ b/src/main/java/org/apache/commons/pool2/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