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 c65c2c23 Normalize end of comments
c65c2c23 is described below

commit c65c2c239bef5b61f0e4ecee9e6fbe752ea69f12
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Jan 20 10:54:02 2024 -0500

    Normalize end of comments
---
 src/main/java/org/apache/commons/pool2/PoolUtils.java              | 3 ---
 src/main/java/org/apache/commons/pool2/impl/AbandonedConfig.java   | 2 --
 src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java | 1 -
 3 files changed, 6 deletions(-)

diff --git a/src/main/java/org/apache/commons/pool2/PoolUtils.java 
b/src/main/java/org/apache/commons/pool2/PoolUtils.java
index bf72cfd5..ea753dbc 100644
--- a/src/main/java/org/apache/commons/pool2/PoolUtils.java
+++ b/src/main/java/org/apache/commons/pool2/PoolUtils.java
@@ -326,7 +326,6 @@ public final class PoolUtils {
      * may be invalidated instead of being added to idle capacity.
      *
      * @param <T> type of objects in the pool
-     *
      */
     private static final class ErodingObjectPool<T> implements ObjectPool<T> {
 
@@ -597,7 +596,6 @@ public final class PoolUtils {
      * as the pool's minIdle setting.
      *
      * @param <T> type of objects in the pool
-     *
      */
     private static final class ObjectPoolMinIdleTimerTask<T> extends TimerTask 
{
 
@@ -1022,7 +1020,6 @@ public final class PoolUtils {
      * </p>
      *
      * @param <T> type of objects in the pool
-     *
      */
     private static final class SynchronizedObjectPool<T> implements 
ObjectPool<T> {
 
diff --git a/src/main/java/org/apache/commons/pool2/impl/AbandonedConfig.java 
b/src/main/java/org/apache/commons/pool2/impl/AbandonedConfig.java
index f3a0bf08..0460ee36 100644
--- a/src/main/java/org/apache/commons/pool2/impl/AbandonedConfig.java
+++ b/src/main/java/org/apache/commons/pool2/impl/AbandonedConfig.java
@@ -124,7 +124,6 @@ public class AbandonedConfig {
      *
      * @return boolean true if stack trace logging is turned on for abandoned
      * objects
-     *
      */
     public boolean getLogAbandoned() {
         return this.logAbandoned;
@@ -241,7 +240,6 @@ public class AbandonedConfig {
      *
      * @param logAbandoned true turns on abandoned stack trace logging
      * @see #getLogAbandoned()
-     *
      */
     public void setLogAbandoned(final boolean logAbandoned) {
         this.logAbandoned = logAbandoned;
diff --git a/src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java 
b/src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java
index 630cfddd..386b7a9c 100644
--- a/src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java
+++ b/src/main/java/org/apache/commons/pool2/impl/GenericObjectPool.java
@@ -211,7 +211,6 @@ public class GenericObjectPool<T> extends 
BaseGenericObjectPool<T>
      * is thrown. If there is no factory set (factory == null), an {@code 
IllegalStateException}
      * is thrown.
      * </p>
-     *
      */
     @Override
     public void addObject() throws Exception {

Reply via email to