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:07 UTC

[camel] branch camel-3.0.x updated: Fixed setter

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

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


The following commit(s) were added to refs/heads/camel-3.0.x by this push:
     new dfe9bfc  Fixed setter
dfe9bfc is described below

commit dfe9bfc6eb37ff889b21b3082be97fed717cea08
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() {