You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/05/28 18:52:36 UTC

[commons-pool] branch master updated: Remove trailing spaces.

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 2a249e7  Remove trailing spaces.
2a249e7 is described below

commit 2a249e7d02ccf2d5f5e4fd4264bc21aa21ed790f
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu May 28 14:52:31 2020 -0400

    Remove trailing spaces.
---
 src/main/java/org/apache/commons/pool2/PoolUtils.java               | 2 +-
 .../java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/pool2/PoolUtils.java b/src/main/java/org/apache/commons/pool2/PoolUtils.java
index a7712f8..b34a847 100644
--- a/src/main/java/org/apache/commons/pool2/PoolUtils.java
+++ b/src/main/java/org/apache/commons/pool2/PoolUtils.java
@@ -101,7 +101,7 @@ public final class PoolUtils {
      *         object count.
      * @throws IllegalArgumentException
      *             when {@code pool} is {@code null} or when {@code minIdle} is
-     *             negative or when {@code period} isn't valid for 
+     *             negative or when {@code period} isn't valid for
      *             {@link Timer#schedule(TimerTask, long, long)}
      */
     public static <T> TimerTask checkMinIdle(final ObjectPool<T> pool,
diff --git a/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java b/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java
index c300f05..25a5a2b 100644
--- a/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java
+++ b/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java
@@ -219,7 +219,7 @@ public abstract class BaseGenericObjectPool<T> extends BaseObject {
 
     /**
      * Initializes the receiver with the given configuration.
-     * 
+     *
      * @param config Initialization source.
      */
     protected void setConfig(final BaseObjectPoolConfig<T> config) {
@@ -670,7 +670,7 @@ public abstract class BaseGenericObjectPool<T> extends BaseObject {
 
     /**
      * Sets the eviction policy.
-     * 
+     *
      * @param className Eviction policy class name.
      * @param classLoader Load the class from this class loader.
      */
@@ -1169,7 +1169,7 @@ public abstract class BaseGenericObjectPool<T> extends BaseObject {
 
         /**
          * Sets the scheduled future.
-         * 
+         *
          * @param scheduledFuture the scheduled future.
          */
         void setScheduledFuture(final ScheduledFuture<?> scheduledFuture) {