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 2022/08/07 11:30:12 UTC

[commons-pool] branch master updated: Format tweak

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 d9af49f9 Format tweak
d9af49f9 is described below

commit d9af49f9f398540059c88f14481a39b6cb16996b
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Aug 7 07:30:06 2022 -0400

    Format tweak
---
 src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java b/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java
index 55ad8881..c8a3bfb8 100644
--- a/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java
+++ b/src/main/java/org/apache/commons/pool2/impl/GenericKeyedObjectPool.java
@@ -570,7 +570,7 @@ public class GenericKeyedObjectPool<K, T, E extends Exception> extends BaseGener
      */
     @Override
     public void clear() {
-        poolMap.keySet().forEach(key -> clear(key,false));
+        poolMap.keySet().forEach(key -> clear(key, false));
     }
 
     /**