You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/03/16 08:36:16 UTC

[camel] 01/01: Regen for commit 0b7a5a6a2ba62d135aa688f61b976f5983a211d6

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

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

commit 2908d03e27d4de0af8c37460d8448f72d8b6bfcb
Author: davsclaus <da...@users.noreply.github.com>
AuthorDate: Thu Mar 16 07:46:17 2023 +0000

    Regen for commit 0b7a5a6a2ba62d135aa688f61b976f5983a211d6
    
    Signed-off-by: GitHub <no...@github.com>
---
 .../apache/camel/test/infra/core/DefaultCamelContextExtension.java  | 1 -
 .../camel/test/infra/core/DefaultContextLifeCycleManager.java       | 6 ++++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/test-infra/camel-test-infra-core/src/test/java/org/apache/camel/test/infra/core/DefaultCamelContextExtension.java b/test-infra/camel-test-infra-core/src/test/java/org/apache/camel/test/infra/core/DefaultCamelContextExtension.java
index be965607ef5..6136c6e1703 100644
--- a/test-infra/camel-test-infra-core/src/test/java/org/apache/camel/test/infra/core/DefaultCamelContextExtension.java
+++ b/test-infra/camel-test-infra-core/src/test/java/org/apache/camel/test/infra/core/DefaultCamelContextExtension.java
@@ -28,7 +28,6 @@ import org.apache.camel.ProducerTemplate;
 import org.apache.camel.component.mock.MockEndpoint;
 import org.apache.camel.test.infra.core.annotations.ContextFixture;
 import org.apache.camel.test.infra.core.annotations.RouteFixture;
-import org.apache.camel.util.ObjectHelper;
 import org.junit.jupiter.api.extension.ExtensionContext;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
diff --git a/test-infra/camel-test-infra-core/src/test/java/org/apache/camel/test/infra/core/DefaultContextLifeCycleManager.java b/test-infra/camel-test-infra-core/src/test/java/org/apache/camel/test/infra/core/DefaultContextLifeCycleManager.java
index 5316a30479e..fbb1903561b 100644
--- a/test-infra/camel-test-infra-core/src/test/java/org/apache/camel/test/infra/core/DefaultContextLifeCycleManager.java
+++ b/test-infra/camel-test-infra-core/src/test/java/org/apache/camel/test/infra/core/DefaultContextLifeCycleManager.java
@@ -53,7 +53,8 @@ public class DefaultContextLifeCycleManager implements ContextLifeCycleManager {
         if (context != null) {
             context.shutdown();
         } else {
-            LOG.error("Cannot run the JUnit's afterAll because the context is null: a problem may have prevented the context from starting");
+            LOG.error(
+                    "Cannot run the JUnit's afterAll because the context is null: a problem may have prevented the context from starting");
         }
     }
 
@@ -62,7 +63,8 @@ public class DefaultContextLifeCycleManager implements ContextLifeCycleManager {
         if (context != null) {
             context.getShutdownStrategy().setTimeout(shutdownTimeout);
         } else {
-            LOG.error("Cannot run the JUnit's beforeAll because the context is null: a problem may have prevented the context from starting");
+            LOG.error(
+                    "Cannot run the JUnit's beforeAll because the context is null: a problem may have prevented the context from starting");
         }
     }