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 2021/06/28 20:03:44 UTC

[commons-pool] branch master updated: Formatting.

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 d803158  Formatting.
d803158 is described below

commit d803158cbcc2915ec013799fbcc93e90f38a596f
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Jun 28 15:52:49 2021 -0400

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

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 b3c7aea..d2f4171 100644
--- a/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java
+++ b/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java
@@ -213,7 +213,7 @@ public abstract class BaseGenericObjectPool<T> extends BaseObject {
         @Override
         @SuppressWarnings("rawtypes")
         public boolean equals(final Object other) {
-            return  other instanceof IdentityWrapper &&
+            return other instanceof IdentityWrapper &&
                     ((IdentityWrapper) other).instance == instance;
         }