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/12/14 08:22:21 UTC

[camel-spring-boot] 02/02: 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-spring-boot.git

commit 977e2d86a281d4c5b1992deef94f5b5dac97e195
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Dec 13 15:35:35 2020 +0100

    Polished
---
 .../java/org/apache/camel/spring/boot/CamelAutoConfiguration.java   | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java
index 5b4a4be..2f96cdb 100644
--- a/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java
+++ b/core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/CamelAutoConfiguration.java
@@ -117,10 +117,8 @@ public class CamelAutoConfiguration {
             Environment env = applicationContext.getEnvironment();
             if (env instanceof ConfigurableEnvironment) {
                 MutablePropertySources sources = ((ConfigurableEnvironment) env).getPropertySources();
-                if (sources != null) {
-                    if (!sources.contains("camel-file-configuration")) {
-                        sources.addFirst(new FilePropertySource("camel-file-configuration", applicationContext, config.getFileConfigurations()));
-                    }
+                if (!sources.contains("camel-file-configuration")) {
+                    sources.addFirst(new FilePropertySource("camel-file-configuration", applicationContext, config.getFileConfigurations()));
                 }
             }
         }