This is an automated email from the ASF dual-hosted git repository. jpoth pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 267f4e5bff9a1db243fda8b67b1079ec673cbcc2 Author: John Poth <poth.j...@gmail.com> AuthorDate: Mon Sep 30 16:57:48 2019 +0200 Fix ServicePool documentation --- .../src/main/java/org/apache/camel/impl/engine/ServicePool.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/camel-base/src/main/java/org/apache/camel/impl/engine/ServicePool.java b/core/camel-base/src/main/java/org/apache/camel/impl/engine/ServicePool.java index 8afe7ef..a75cdd6 100644 --- a/core/camel-base/src/main/java/org/apache/camel/impl/engine/ServicePool.java +++ b/core/camel-base/src/main/java/org/apache/camel/impl/engine/ServicePool.java @@ -36,8 +36,7 @@ import org.slf4j.LoggerFactory; /** * A service pool is like a connection pool but can pool any kind of objects. * <p/> - * Notice the capacity is <b>per key</b> which means that each key can contain at most - * (the capacity) services. The pool will contain at most (the capacity) number of keys. + * The pool will contain at most (the capacity) number of services. * <p/> * By default the capacity is set to 100. */