You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/01/20 15:29:08 UTC

[camel] 03/06: Polished

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c41fc982d0f77cf239ea46346304ab15e3bc7d5e
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Jan 20 14:55:43 2020 +0100

    Polished
---
 .../main/java/org/apache/camel/reifier/RecipientListReifier.java   | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/core/camel-core-engine/src/main/java/org/apache/camel/reifier/RecipientListReifier.java b/core/camel-core-engine/src/main/java/org/apache/camel/reifier/RecipientListReifier.java
index a2fe5d2..6d9a566 100644
--- a/core/camel-core-engine/src/main/java/org/apache/camel/reifier/RecipientListReifier.java
+++ b/core/camel-core-engine/src/main/java/org/apache/camel/reifier/RecipientListReifier.java
@@ -109,12 +109,7 @@ public class RecipientListReifier extends ProcessorReifier<RecipientListDefiniti
 
         // wrap in nested pipeline so this appears as one processor
         // (threads definition does this as well)
-        return new Pipeline(routeContext.getCamelContext(), pipe) {
-            @Override
-            public String toString() {
-                return "RecipientList[" + expression + "]";
-            }
-        };
+        return new Pipeline(routeContext.getCamelContext(), pipe);
     }
 
     private AggregationStrategy createAggregationStrategy(RouteContext routeContext) {