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

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


The following commit(s) were added to refs/heads/main by this push:
     new 7e66aab7b6f Regen for commit 813cbb7c7eb3a8b085ebd8065f9bbe97298c7d38 
(#9410)
7e66aab7b6f is described below

commit 7e66aab7b6f1d2baeb15b432dde09f8a7f545486
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Feb 25 18:30:10 2023 +0100

    Regen for commit 813cbb7c7eb3a8b085ebd8065f9bbe97298c7d38 (#9410)
    
    Signed-off-by: GitHub <nore...@github.com>
    Co-authored-by: orpiske <orpi...@users.noreply.github.com>
---
 .../apache/camel/impl/lw/LightweightRuntimeCamelContext.java  | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git 
a/core/camel-core-engine/src/main/java/org/apache/camel/impl/lw/LightweightRuntimeCamelContext.java
 
b/core/camel-core-engine/src/main/java/org/apache/camel/impl/lw/LightweightRuntimeCamelContext.java
index cdcfe01800b..eeac0227849 100644
--- 
a/core/camel-core-engine/src/main/java/org/apache/camel/impl/lw/LightweightRuntimeCamelContext.java
+++ 
b/core/camel-core-engine/src/main/java/org/apache/camel/impl/lw/LightweightRuntimeCamelContext.java
@@ -1137,8 +1137,6 @@ public class LightweightRuntimeCamelContext implements 
CamelContext, CatalogCame
         return startupSummaryLevel;
     }
 
-
-
     //
     // Unsupported mutable methods
     //
@@ -1150,7 +1148,8 @@ public class LightweightRuntimeCamelContext implements 
CamelContext, CatalogCame
         if (instance != null) {
             clazz = instance.getClass();
         } else {
-            clazz = 
lwCamelContextExtension.getFactoryFinder(DefaultComponentResolver.RESOURCE_PATH).findClass(componentName).orElse(null);
+            clazz = 
lwCamelContextExtension.getFactoryFinder(DefaultComponentResolver.RESOURCE_PATH).findClass(componentName)
+                    .orElse(null);
             if (clazz == null) {
                 instance = hasComponent(componentName);
                 if (instance != null) {
@@ -1171,7 +1170,8 @@ public class LightweightRuntimeCamelContext implements 
CamelContext, CatalogCame
         if (instance != null) {
             clazz = instance.getClass();
         } else {
-            clazz = 
lwCamelContextExtension.getFactoryFinder(DefaultDataFormatResolver.DATAFORMAT_RESOURCE_PATH).findClass(dataFormatName).orElse(null);
+            clazz = 
lwCamelContextExtension.getFactoryFinder(DefaultDataFormatResolver.DATAFORMAT_RESOURCE_PATH)
+                    .findClass(dataFormatName).orElse(null);
             if (clazz == null) {
                 return null;
             }
@@ -1186,7 +1186,8 @@ public class LightweightRuntimeCamelContext implements 
CamelContext, CatalogCame
         if (instance != null) {
             clazz = instance.getClass();
         } else {
-            clazz = 
lwCamelContextExtension.getFactoryFinder(DefaultLanguageResolver.LANGUAGE_RESOURCE_PATH).findClass(languageName).orElse(null);
+            clazz = 
lwCamelContextExtension.getFactoryFinder(DefaultLanguageResolver.LANGUAGE_RESOURCE_PATH)
+                    .findClass(languageName).orElse(null);
             if (clazz == null) {
                 return null;
             }

Reply via email to