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/08/03 06:55:45 UTC

[camel] branch master updated: Fixed CS

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


The following commit(s) were added to refs/heads/master by this push:
     new cebf773  Fixed CS
cebf773 is described below

commit cebf773a211f71834439503a57cf5f804a734a7d
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Aug 3 08:55:22 2020 +0200

    Fixed CS
---
 .../src/main/java/org/apache/camel/processor/ChoiceProcessor.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-base/src/main/java/org/apache/camel/processor/ChoiceProcessor.java b/core/camel-base/src/main/java/org/apache/camel/processor/ChoiceProcessor.java
index ac86616..6bca926 100644
--- a/core/camel-base/src/main/java/org/apache/camel/processor/ChoiceProcessor.java
+++ b/core/camel-base/src/main/java/org/apache/camel/processor/ChoiceProcessor.java
@@ -52,7 +52,7 @@ public class ChoiceProcessor extends AsyncProcessorSupport implements Navigate<P
 
     public ChoiceProcessor(List<FilterProcessor> filters, Processor otherwise) {
         this.filters = filters;
-        this.otherwise = AsyncProcessorConverterHelper.convert(otherwise);;
+        this.otherwise = AsyncProcessorConverterHelper.convert(otherwise);
     }
 
     @Override