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 2018/04/11 15:40:06 UTC

commons-pool git commit: Format: Allow longer lines.

Repository: commons-pool
Updated Branches:
  refs/heads/master 0fc2271d5 -> 03683a464


Format: Allow longer lines.

Project: http://git-wip-us.apache.org/repos/asf/commons-pool/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-pool/commit/03683a46
Tree: http://git-wip-us.apache.org/repos/asf/commons-pool/tree/03683a46
Diff: http://git-wip-us.apache.org/repos/asf/commons-pool/diff/03683a46

Branch: refs/heads/master
Commit: 03683a464d1b77533648f5710431717ee34fbdc1
Parents: 0fc2271
Author: Gary Gregory <ga...@gmail.com>
Authored: Wed Apr 11 09:40:03 2018 -0600
Committer: Gary Gregory <ga...@gmail.com>
Committed: Wed Apr 11 09:40:03 2018 -0600

----------------------------------------------------------------------
 src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-pool/blob/03683a46/src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java b/src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java
index 96e960b..a8953bf 100644
--- a/src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java
+++ b/src/main/java/org/apache/commons/pool2/impl/EvictionPolicy.java
@@ -40,6 +40,5 @@ public interface EvictionPolicy<T> {
      * @return <code>true</code> if the object should be evicted, otherwise
      *             <code>false</code>
      */
-    boolean evict(EvictionConfig config, PooledObject<T> underTest,
-            int idleCount);
+    boolean evict(EvictionConfig config, PooledObject<T> underTest, int idleCount);
 }