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 2019/12/18 04:01:13 UTC

[camel] branch master updated: Fixed setter

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 220fab4  Fixed setter
220fab4 is described below

commit 220fab43850bf6a2e09c2cbcb65b81d3de010362
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Dec 18 04:59:50 2019 +0100

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

diff --git a/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java b/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
index 7b5e8ea..04929ed 100644
--- a/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
+++ b/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
@@ -384,7 +384,7 @@ public abstract class BaseMainSupport extends ServiceSupport {
     }
 
     public void setRoutesBuilders(List<RoutesBuilder> routesBuilders) {
-        this.routeBuilders = routeBuilders;
+        this.routeBuilders = routesBuilders;
     }
 
     public List<Object> getConfigurations() {