Repository: camel Updated Branches: refs/heads/camel-2.16.x 3f2dcd403 -> 7af24ce69 refs/heads/camel-2.17.x f043e472a -> dd45d2162 refs/heads/master c67d362fb -> d13c8706b
CAMEL-9866 @PropertyInject doesn't work with Spring-Boot Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/d13c8706 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/d13c8706 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/d13c8706 Branch: refs/heads/master Commit: d13c8706b34637387f2057321baaf8a1fc775241 Parents: fa0979f Author: Tomas Rohovsky <tomasrohov...@seznam.cz> Authored: Wed Apr 13 22:34:35 2016 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Thu Apr 14 07:38:22 2016 +0200 ---------------------------------------------------------------------- .../java/org/apache/camel/spring/boot/CamelAutoConfiguration.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/d13c8706/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java index c0e308e..9100c3e 100644 --- a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java +++ b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java @@ -129,7 +129,6 @@ public class CamelAutoConfiguration { } else { PropertiesComponent pc = new PropertiesComponent(); pc.setPropertiesParser(parser); - camelContext.addComponent("properties", pc); return pc; } }